exporttemplate_list.html 394 B

1234567891011
  1. {% extends 'generic/object_list.html' %}
  2. {% load i18n %}
  3. {% block bulk_buttons %}
  4. {% if perms.extras.sync_configcontext %}
  5. <button type="submit" name="_sync" {% formaction %}="{% url 'extras:exporttemplate_bulk_sync' %}" class="btn btn-primary">
  6. <i class="mdi mdi-sync" aria-hidden="true"></i> {% trans "Sync Data" %}
  7. </button>
  8. {% endif %}
  9. {{ block.super }}
  10. {% endblock %}