list.html 297 B

12345678910
  1. {% extends "admin/admin/list.html" %}
  2. {% load i18n %}
  3. {% load l10n %}
  4. {% load url from future %}
  5. {% block table_row scoped %}
  6. <td class="lead-cell">
  7. <strong>{{ _(item.theme) }}</strong> <span class="muted">{{ ', '.join(item.useragents.splitlines()) }}</span>
  8. </td>
  9. {% endblock%}