diff options
Diffstat (limited to 'templates/frontpage.html')
-rw-r--r-- | templates/frontpage.html | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/templates/frontpage.html b/templates/frontpage.html new file mode 100644 index 0000000..517feb7 --- /dev/null +++ b/templates/frontpage.html @@ -0,0 +1,40 @@ +{% extends "base.html" %} +{% block title %} +Debian Project patch tracking system +{% endblock %} +{% block content %} + <h1>Debian Project patch tracking system</h1> + <h2>Introduction</h2> + <p> + This site is used to track/visualize the changes made in the source code + of software packaged in the debian distribution. + </p> + <h2>Quick access</h2> + <ul> + <li><span class="url">{{ conf.root_url }}/package/<p></span> + - search for package p</li> + <li><span class="url">{{ conf.root_url }}/package/<p>/<v></span> + - go directly to the page for package p, version v</li> + <li><span class="url">{{ conf.root_url }}/email/<u></span> + - show packages with maintainer address containing u.</li> + </ul> + <h3>Browse patches by package name</h3> + <div class="quicklinks"> + {% for index in indices %} + <a href="{% url patchtracker.views.display_toc index=index %}">{{ index }}</a> + {% if not forloop.last %} + - + {% endif %} + {% empty %} + Error fetching indices of available packages + {% endfor %} + <!-- <a href="index/"{{ k }}">{{ k }}</a> --> + </div> + <h3>Jump to package / Package search</h3> + <div class="framed"> + <form name="jumper" action="jump" method="post"> + <input type="text" name="package" /> + <input type="submit" name="submit" /> + </form> + </div> +{% endblock %} |