~ubuntu-manual-website/ubuntu-manual-website/bug-form

« back to all changes in this revision

Viewing changes to templates/bugs/bug_list.html

  • Committer: Josh Holland
  • Date: 2010-04-27 20:44:16 UTC
  • Revision ID: jrh@joshh.co.uk-20100427204416-ygu7cco8vsuoba42
Added templates

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<html>
 
2
<body>
 
3
    <h1>All bugs reported</h1>
 
4
{% if object_list %}
 
5
    <ul>
 
6
    {% for bug in object_list %}
 
7
        <li><a href="{{ bug.id }}">{{ bug.desc }}</a></li>
 
8
    {% endfor %}
 
9
    </ul>
 
10
{% else %}
 
11
    <p>No bugs. Hooray \o/</p>
 
12
{% endif %}
 
13
</body>
 
14
</html>