list.html 411 B

1234567891011
  1. {% extends "admin/admin/list.html" %}
  2. {% load i18n %}
  3. {% load l10n %}
  4. {% load url from future %}
  5. {% import "_forms.html" as form_theme with context %}
  6. {% block table_row scoped %}
  7. <td class="lead-cell">
  8. <strong>{{ item.name }}</strong>{% if item.ignore_subscriptions %} <span class="label label-important">{% trans %}Ignoring Subscriptions{% endtrans %}</span>{% endif %}
  9. </td>
  10. {% endblock%}