Files @ 531a97a3c9af
Branch filter:

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

bsturmfels
Eliminate "conservancy" and "apps" subdirectories

The directory nesting is unnecessary here and confusing to navigate. I've moved
all apps to the project subdirectory, currently called "www", but soon to be
renamed "conservancy".

I've also moved manage.py to the top-level directory.
{% 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 %}