Projet

Général

Profil

0001-update-association-page-14587.patch

Serghei Mihai (congés, retour 15/05), 26 janvier 2017 15:40

Télécharger (1,77 ko)

Voir les différences:

Subject: [PATCH] update association page (#14587)

 mandayejs/mandaye/templates/mandaye/associate.html | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)
mandayejs/mandaye/templates/mandaye/associate.html
1 1
{% load i18n gadjo staticfiles %}
2
<!DOCTYPE html>
2 3
<html>
3 4
    <head>
5
        <meta charset="utf-8" />
4 6
        <link rel="stylesheet" href="{% static 'mandaye.css' %}" type="text/css" />
7
        <title>{% trans 'Associate your account' %}</title>
5 8
    </head>
6 9
    <body>
7
        <div id="main-div">
10
        <div id="mandaye-associate">
8 11
            <h1>{% trans 'Associate your account' %}</h1>
9
            <div id='div-logo'><img id='logo' src="{% static 'images/associate.png' alt='associate.png' %}" /></div>
12
            <div id='logo'><img src="{% static 'images/associate.png' alt='associate.png' %}" /></div>
10 13
            {% if messages %}
11 14
            <ul class="messages">
12 15
                {%for message in messages%}
......
14 17
                {%endfor%}
15 18
            </ul>
16 19
            {%endif%}
17
            <form id='associate' method="post">
20
            <form method="post">
18 21
                {% csrf_token %}
19 22
                {{ form.as_p }}
20
                <p><input id="submit" type="submit" value="{% trans 'Submit' %}" /></p>
23
                <p><input type="submit" value="{% trans 'Submit' %}" /></p>
21 24
            </form>
22 25
        </div>
23 26
    </body>
24
-