aboutsummaryrefslogblamecommitdiffstats
path: root/interfaces/web/templates/list.html
blob: 65e6fe2c76ba080f545673d4e543a26469e1a73c (plain) (tree)
1
2
3
4
5
6
7
8

                         
                      
               

              
                   
                         






                                
            
                                        
                                                                          
                                                         
                                     
                                                 
             

                    
              
{% extends "base.html" %}

{% block page_title %}
    {{ label }}
{% endblock %}

{% block content %}
    <table id="bug-list">
        <tr>
            <th>ID</th>
            <th>Summary</th>
            <th>Status</th>
            <th>Assigned To</th>
        </tr>
        {% for bug in bugs %}
        <tr>
            <td>{{ bug.id.user() }}</td>
            <td><a href="/bug?{{ urlencode({'id':bug.id.long_user()}) }}">
                {{ bug.summary|e|truncate(70) }}</a></td>
            <td>{{ bug.status }}</td>
            <td>{{ bug.assigned|striptags }}</td>
        </tr>
        {% endfor %}
    </table>
{% endblock %}