aboutsummaryrefslogtreecommitdiff
path: root/budget/templates/forms.html
blob: b0277638be342064f8eda9eadbbebcbaa4ebb5f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{% macro input(field, multiple=False) -%}
      <div class="clearfix">

        {% if field.type != "SubmitField" %}
            {{ field.label }}
        {% endif %}
        <div class="input">
            {% if multiple == True %}
                {{ field(multiple=True) }}
            {% else %}
                {{ field }}
            {% endif %}
            {% if field.description %}
                <span class="help-inline">{{ field.description }}</span>
            {% endif %}
        </div>
      </div> <!-- /clearfix -->
{% endmacro %}

{% macro submit(field, cancel=False) -%}
    <div class="actions">
        <button type="submit" class="btn primary">{{ field.name }}</button>
        {% if cancel %}
            <button id="cancel-form" type="reset" class="btn">Cancel</button>
        {% endif %}
      </div>
{% endmacro %}

{% macro authenticate(form, home=False) %}

    {% include "display_errors.html" %}
    {{ form.hidden_tag() }}
    {{ input(form.id) }}
    {{ input(form.password) }}
    {% if not home %}
    {{ submit(form.submit) }}
    {% endif %}

{% endmacro %}

{% macro create_project(form, home=False) %}

    {% include "display_errors.html" %}
    {{ form.hidden_tag() }}
    {{ input(form.name) }}
    {{ input(form.id) }}
    {{ input(form.password) }}
    {{ input(form.contact_email) }}
    {% if not home %}
    {{ submit(form.submit) }}
    {% endif %}

{% endmacro %}

{% macro add_bill(form, edit=False) %}

    <fieldset>
        <legend>{% if edit %}Edit this {% else %}Add a {% endif %}bill</legend>
    {% include "display_errors.html" %}
    {{ form.hidden_tag() }} 
    {{ input(form.date) }} 
    {{ input(form.what) }} 
    {{ input(form.payer) }} 
    {{ input(form.amount) }} 
    {{ input(form.payed_for) }} 
    </fieldset>
    {{ submit(form.submit, cancel=True) }}

{% endmacro %}

{% macro add_member(form) %}
    {{ form.hidden_tag() }}
    {{ form.name }}
    <button class="btn">Add a new user</button>

{% endmacro %}

{% macro invites(form) %}
    {{ form.hidden_tag() }}
    {{ input(form.emails) }}
    <div class="actions">
        <button class="btn">Send the invitations</button>
        <a href="{{ url_for(".list_bills") }}">No, thanks</a>
    </div>
{% endmacro %}

{% macro create_archive(form) %}
    <fieldset>
        <legend>Create an archive</legend>
    {{ form.hidden_tag() }}
    {{ input(form.start_date) }}
    {{ input(form.end_date) }}
    </fieldset>
    <div class="actions">
        <button class="btn">Create the archive</button>
    </div>
{% endmacro %}