grandlyon-glc: adapt to “title” now being a crown attribute (#89957)
gitea/publik-base-theme/pipeline/head This commit looks good Details

This commit is contained in:
Paul Marillonnet 2024-04-24 11:48:28 +02:00
parent 845776da3d
commit cb77b62424
2 changed files with 4 additions and 1 deletions

View File

@ -3,7 +3,6 @@
{% block cut-edit-title %}Modifier mes données d'identité{% endblock %}
{% block form %}
<div>
{% include "gadjo/widget.html" with field=form.title %}
{% include "gadjo/widget.html" with field=form.first_name %}
{% include "gadjo/widget.html" with field=form.last_name %}
{% include "gadjo/widget.html" with field=form.birthdate %}

View File

@ -4,6 +4,10 @@
{% block form %}
<h3 class="section">Identité</h3>
<div>
{% if form.title %}
{% include "gadjo/widget.html" with field=form.title %}
{% endif %}
{% if form.preferred_givenname %}
{% include "gadjo/widget.html" with field=form.preferred_givenname %}
{% endif %}