grand-chambery: move user-info block code into specific template file (#52275)

This commit is contained in:
Thomas Jund 2021-03-26 16:34:19 +01:00
parent b9cdb20a1d
commit 8fc249aba7
2 changed files with 4 additions and 4 deletions

View File

@ -1,10 +1,6 @@
{% extends "combo/page_template.html" %}
{% load combo %}
{% block user-info-login-label %}Je me connecte{% endblock %}
{% block user-info-registration-label %}Je minscris{% endblock %}
{% block before-main-content %}
{{ block.super }}
{% skeleton_extra_placeholder topsection %}

View File

@ -0,0 +1,4 @@
{% extends "includes/user-info.html" %}
{% block user-info-login-label %}Je me connecte{% endblock %}
{% block user-info-registration-label %}Je minscris{% endblock %}