1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
{% extends "base.html" %} {% block title %}Search Launchpad OOPS Reports{% endblock %} {% block logo %} <img src="https://launchpad.net/@@/launchpad-logo-and-name.png" /> {% endblock %} {% block summaries %} <h2>Available reports</h2> <ul> {% for report in reports %} <li><a href="{% url oopstools.oops.views.report report.name %}">{{ report.title }}</a></li> {% endfor %} </ul> {% endblock %} |