diff --git a/c3l_membership/templates/index.html b/c3l_membership/templates/index.html --- a/c3l_membership/templates/index.html +++ b/c3l_membership/templates/index.html @@ -3,7 +3,7 @@ - C3L Membership Application + {% trans %}C3L Membership Application{% endtrans %} @@ -15,12 +15,14 @@
-

Membership Application

-

How to use this form

+

{% trans %}Membership Application{% endtrans %}

+

{% trans %}How to use this form{% endtrans %}

- Fill out this form and click on "Become a member". Afterwards you will be presented with a PDF, which you have - to send to info@c3l.lu or bring it to one of our next events. Print it or save it to your local hardware, - because we don't save a copy on our servers for data protection reasons! + {% trans %} + Fill out this form and click on "Become a member". Afterwards you will be presented with a PDF, which you have + to send to info@c3l.lu or bring it to one of our next events. Print it or save it to your local hardware, + because we don't save a copy on our servers for data protection reasons! + {% endtrans %}

{% if form.errors %} {% for fieldname, errors in form.errors.items() %} @@ -32,7 +34,7 @@
{{ form.hidden_tag() }} - Required information + {% trans %}Required information{% endtrans %}
{{ form.username.label }} @@ -73,101 +75,107 @@
-

What's difference between the different membership options?

-

All the options include to following benefits:

+

{% trans %}What's difference between the different membership options?{% endtrans %}

+

{% trans %}All the options include to following benefits:{% endtrans %}

-

Becoming a regular member gives you these additional benefits:

-
    -
  • Voting rights on general assemblys
  • -
  • Access to our internal mailinglist
  • -
-

- You can read more on the membership - here. -

-

What are the membership fees?

-

- The membership fee for the regular membership is {{ config["REGULAR_FEE"] }}€ per year. The membership - fee for the supporting membership is {{ config["SUPPORTING_FEE"] }}€ per year. If you are a student, - all membership fees are {{ config["SUPPORTING_FEE"] }}€ per year. For that please select the - corresponding option. -

-

I cannot afford the membership?

-

- If you cannot afford the membership, please contact us via info@c3l.lu first, before filling out the - membership form. We will try to find a solution together. -

-
- -
-
- {{ form.payment.label }} - {% for option in form.payment %} - - {% endfor %} -
-
- Additional information -
-
- {{ form.birthday.label }} - {{ form.birthday(class="pure-u-1-1") }} -
-
-
-
- {{ form.street.label }} - {{ form.street(class="pure-u-1-1") }} -
-
-
-
- {{ form.zip.label }} - {{ form.zip(class="pure-u-1-1") }} -
-
-
-
- {{ form.city.label }} - {{ form.city(class="pure-u-1-1") }} -
-
-
-
- {{ form.state.label }} - {{ form.state(class="pure-u-1-1") }} -
-
-
-
- {{ form.country.label }} - {{ form.country(class="pure-u-1-1") }} -
-
- - - -
{{ form.submit }}
- - - -
- - - +

{% trans %}Becoming a regular member gives you these additional benefits:{% endtrans%}

+

+

+ {% trans %} + You can read more on the membership here. + {% endtrans %} +

+

{% trans %}What are the membership fees?{% endtrans %}

+

+ {% trans regular_fee=config["REGULAR_FEE"], supporting_fee=config["SUPPORTING_FEE"] %} + The membership fee for the regular membership is {{ regular_fee }}€ per year. The membership + fee for the supporting membership is {{ supporting_fee }}€ per year. If you are a student, + all membership fees are {{ supporting_fee }}€ per year. For that please select the + corresponding option. + {% endtrans %} +

+

{% trans %}I cannot afford the membership?{% endtrans %}

+

+ {% trans %} + If you cannot afford the membership, please contact us via info@c3l.lu first, before filling out the + membership form. We will try to find a solution together. + {% endtrans %} +

+ + +
+
+ {{ form.payment.label }} + {% for option in form.payment %} + + {% endfor %} +
+
+ {% trans %}Additional information{% endtrans %} +
+
+ {{ form.birthday.label }} + {{ form.birthday(class="pure-u-1-1") }} +
+
+
+
+ {{ form.street.label }} + {{ form.street(class="pure-u-1-1") }} +
+
+
+
+ {{ form.zip.label }} + {{ form.zip(class="pure-u-1-1") }} +
+
+
+
+ {{ form.city.label }} + {{ form.city(class="pure-u-1-1") }} +
+
+
+
+ {{ form.state.label }} + {{ form.state(class="pure-u-1-1") }} +
+
+
+
+ {{ form.country.label }} + {{ form.country(class="pure-u-1-1") }} +
+
+ + + +
{{ form.submit }}
+ + + +
+ + +