~lifeless/python-oops-tools/bug-881400

« back to all changes in this revision

Viewing changes to src/oopstools/oops/templates/index.html

  • Committer: Robert Collins
  • Date: 2011-10-13 20:18:51 UTC
  • Revision ID: robertc@robertcollins.net-20111013201851-ym8jmdhoeol3p83s
Export of cruft-deleted tree.

Show diffs side-by-side

added added

removed removed

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