Added debug_toolbar app to project.
[wolnelektury.git] / apps / debug_toolbar / templates / debug_toolbar / panels / templates.html
1 <div class="title">
2     Templates
3 </div>
4 <table>
5     <thead>
6         <tr>
7             <th>Time&nbsp;(ms)</th>
8             <th>Template</th>
9         </tr>
10     </thead>
11     <tbody>
12         {% for template in templates %}
13             <tr class="{% cycle 'row1' 'row2' %}">
14                 <td>{{ template }}</td>
15             </tr>
16         {% endfor %}
17     </tbody>
18 </table>