mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2025-11-17 07:27:42 +01:00
15 lines
347 B
HTML
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 %}
|