aboutsummaryrefslogtreecommitdiff
path: root/templates/payment/create.html
blob: 8defad3a5876438d08c0c8619355666c03e59a34 (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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{% extends "base.html" %}

{% block title %}
  Nouveau paiement
{% endblock title %}

{% block main %}

  <section class="g-Section">
    <p class="g-Paragraph">
      <a
        class="g-Link g-Media__Large"
        href="/{{ payments_params(
          page=query.page,
          search=query.search,
          frequency=query.frequency
        ) }}"
      >
        Retour aux paiements
      </a>
    </p>

    <form class="g-Form" action="/payment/create" method="POST">
      <h1 class="g-H1">
        Nouveau paiement
        {% if query.frequency != "Monthly" %}
          ponctuel
        {% else %}
          mensuel
        {% endif %}
      </h1>

      {% if error %}
        <div class="g-Form__Error">{{ error }}</div>
      {% endif %}

      <label class="g-Form__Label">
        Nom
        <input
          name="name"
          class="g-Form__Input"
          value="{{ form.name | default(value="") }}"
          required
          {% if not form %} autofocus {% endif %}
        />
      </label>

      <label class="g-Form__Label">
        Coût
        <input
          name="cost"
          type="number"
          class="g-Form__Input"
          value="{{ form.cost | default(value="") }}"
          required
        />
      </label>

      {% set user_id = form.user_id | default(value="" ~ connected_user.id) %}

      <label class="g-Form__Label">
        Personne
        <select name="user_id" class="g-Form__Select" required>
          {% for user in users %}
            <option
              value="{{ user.id }}"
              {% if "" ~ user.id == user_id %}
                selected
              {% endif %}
            >
              {{ user.name }}
            </option>
          {% endfor %}
        </select>
      </label>

      {% set category_id = form.category_id | default(value="") %}

      <label class="g-Form__Label">
        Catégorie
        <select name="category_id" class="g-Form__Select" required>
          {% for category in categories %}
            <option
              value="{{ category.id }}"
              style="color: {{ category.color }}"
              {% if "" ~ category.id == category_id %} selected {% endif %}
            >
              {{ category.name }}
            </option>
          {% endfor %}
        </select>
      </label>

      {% set date = form.date | default(value=now() | date(format="%Y-%m-%d")) %}

      {% if query.frequency != "Monthly" %}
        <label class="g-Form__Label">
          Date
          <input
            name="date"
            type="date"
            class="g-Form__Input"
            value="{{ date }}"
            required
          />
        </label>
      {% else %}
        <input
          name="date"
          type="hidden"
          value="{{ date }}"
        />
      {% endif %}

      <input
        type="hidden"
        name="frequency"
        value="{{ query.frequency | default(value="Punctual") }}"
      />

      <div>
        <input class="g-Button__Validate" type="submit" value="Créer" />
      </div>
    </form>
  </section>

{% endblock main %}