subscriptions.html 874 B

1234567891011121314151617181920212223242526272829303132
  1. {% extends 'account/base.html' %}
  2. {% load buttons %}
  3. {% load helpers %}
  4. {% load render_table from django_tables2 %}
  5. {% load i18n %}
  6. {% block title %}{% trans "Subscriptions" %}{% endblock %}
  7. {% block content %}
  8. <form method="post" class="form form-horizontal">
  9. {% csrf_token %}
  10. <input type="hidden" name="return_url" value="{% url 'account:subscriptions' %}" />
  11. {# Table #}
  12. <div class="row">
  13. <div class="col col-md-12">
  14. <div class="card">
  15. <div class="htmx-container table-responsive" id="object_list">
  16. {% include 'htmx/table.html' %}
  17. </div>
  18. </div>
  19. </div>
  20. </div>
  21. {# Form buttons #}
  22. <div class="btn-list d-print-none mt-2">
  23. {% if 'bulk_delete' in actions %}
  24. {% bulk_delete_button model query_params=request.GET %}
  25. {% endif %}
  26. </div>
  27. </form>
  28. {% endblock %}