mirror of
https://gitlab.com/animath/si/plateforme-corres2math.git
synced 2025-06-21 09:18:21 +02:00
Factorize modal templates
This commit is contained in:
@ -189,10 +189,19 @@
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
{% include "registration/login_modal.html" %}
|
||||
{% trans "Log in" as modal_title %}
|
||||
{% trans "Log in" as modal_button %}
|
||||
{% url "login" as modal_action %}
|
||||
{% include "base_modal.html" with modal_id="login" %}
|
||||
{% if user.is_authenticated %}
|
||||
{% include "participation/create_team_modal.html" %}
|
||||
{% include "participation/join_team_modal.html" %}
|
||||
{% trans "Join team" as modal_title %}
|
||||
{% trans "Join" as modal_button %}
|
||||
{% url "participation:join_team" as modal_action %}
|
||||
{% include "base_modal.html" with modal_id="joinTeam" %}
|
||||
{% trans "Create team" as modal_title %}
|
||||
{% trans "Create" as modal_button %}
|
||||
{% url "participation:create_team" as modal_action %}
|
||||
{% include "base_modal.html" with modal_id="createTeam" modal_button_type="success" %}
|
||||
{% endif %}
|
||||
|
||||
<script>
|
||||
|
Reference in New Issue
Block a user