Projet

Général

Profil

0001-mandayejs-meyzieu-change-association-form-submission.patch

Josué Kouka, 23 mars 2018 15:03

Télécharger (1,48 ko)

Voir les différences:

Subject: [PATCH] mandayejs meyzieu: change association form submission button
 label (#22770)

 templates/variants/meyzieu/mandaye/associate.html | 26 +++++++++++++++++++++++
 1 file changed, 26 insertions(+)
 create mode 100644 templates/variants/meyzieu/mandaye/associate.html
templates/variants/meyzieu/mandaye/associate.html
1
{% load i18n static %}
2
<!DOCTYPE html>
3
<html>
4
    <head>
5
        <meta charset="utf-8" />
6
        {% include 'mandaye/association_styles.html' %}
7
        <title>{% trans 'Associate your account' %}</title>
8
    </head>
9
    <body>
10
        <div id="main-div" class="mandaye-associate">
11
            <h1>{% trans 'Associate your account' %}</h1>
12
            {% if messages %}
13
            <ul class="messages">
14
                {%for message in messages%}
15
                    <li>{{message}}</li>
16
                {%endfor%}
17
            </ul>
18
            {%endif%}
19
            <form id='associate' method="post">
20
                {% csrf_token %}
21
                {{ form.as_p }}
22
                <p><input id="submit" type="submit" value="Associer" /></p>
23
            </form>
24
        </div>
25
    </body>
26
</html>
0
-