Files @ b8a626b955c5
Branch filter:

Location: website/conservancy/usethesource/templates/usethesource/download.html

pono
add vizio pdfs to gitignore, they are on webserver
{% extends "usethesource/base.html" %}

{% block content %}
  {{ block.super }}

  <section class="pa2 mt4 mb5">
    <h2 class="f2 lh-title ttu mt0">Download</h2>
    <p><strong>File</strong>: {{ download_url }}</p>

    <p>By downloading this, you agree to use it only for the purposes of GPL compliance checking, unless otherwise permitted by the license.</p>

    <div style="display: flex">
      <a href="{% url 'usethesource:candidate' slug=candidate.slug %}" class="white bg-silver dib pv2 ph3 mb2 mr2">Back</a>
      <a href="{{ download_url }}" class="white bg-green dib pv2 ph3 mb2">Download</a>
    </div>
  </section>
{% endblock content %}