1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-11-17 07:27:42 +01:00
Files
plateforme-tfjm2/survey/templates/survey/survey_list.html
2025-03-19 23:18:45 +01:00

15 lines
347 B
HTML

{% extends "base.html" %}
{% load django_tables2 i18n %}
{% block content %}
<div class="d-grid">
<a href="{% url "survey:survey_create" %}" class="btn gap-0 btn-success">
<i class="fas fa-square-poll-horizontal"></i> {% trans "Add survey" %}
</a>
</div>
<hr>
{% render_table table %}
{% endblock %}