Anpassungen für das Hosting bei Djangoeurope und damit verbundenen Versionen Django 1.8 und Python 2.7
This commit is contained in:
committed by
Christian Berg
parent
cb4b15b3c6
commit
b96b485b61
19
templates/debug_toolbar/panels/signals.html
Normal file
19
templates/debug_toolbar/panels/signals.html
Normal file
@@ -0,0 +1,19 @@
|
||||
{% load i18n %}
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>{% trans "Signal" %}</th>
|
||||
<th>{% trans "Providing" %}</th>
|
||||
<th>{% trans "Receivers" %}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% for name, signal, receivers in signals %}
|
||||
<tr class="{% cycle 'djDebugOdd' 'djDebugEven' %}">
|
||||
<td>{{ name|escape }}</td>
|
||||
<td>{{ signal.providing_args|join:", " }}</td>
|
||||
<td>{{ receivers|join:", " }}</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
Reference in New Issue
Block a user