summaryrefslogtreecommitdiff
path: root/djangoproject/templates/tracdb/bouncing_tickets.html
blob: 0988a4676781d6e34e6b76d23ab551df6ef2cac6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{% extends "base_community.html" %}
{% load i18n %}

{% block content-related %}{% endblock %}

{% block title %}{% translate "Bouncing Tickets" %}{% endblock %}

{% block content %}

  <h1>{% translate "Bouncing Tickets" %}</h1>

  <h2 class="deck">{% translate "Tickets that have been repeatedly reopened." %}</h2>

  <table width="90%" class="docutils">
    <thead>
      <tr>
        <th>{% translate "Ticket" %}</th>
        <th>{% translate "Times reopened" %}</th>
        <th>{% translate "Last reopened" %}</th>
      </tr>
    </thead>
    <tbody>
      {% for t in tickets %}
        <tr>
          <td><a href="https://code.djangoproject.com/ticket/{{ t.id }}">#{{ t.id }}: {{ t.summary|truncatewords:10 }}</a></td>
          <td>{{ t.times_reopened }}</td>
          <td>{{ t.last_reopen_time|date:"F j, Y" }}</td>
        </tr>
      {% endfor %}
    </tbody>
  </table>

{% endblock %}