mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-25 02:24:26 +00:00
Add price for subscriptions
This commit is contained in:
parent
9cfdf4798d
commit
b21d9f6ff2
Binary file not shown.
@ -2273,44 +2273,44 @@ msgstr "Montbéliard"
|
|||||||
|
|
||||||
#: sith/settings.py:337 sith/settings_sample.py:319
|
#: sith/settings.py:337 sith/settings_sample.py:319
|
||||||
msgid "One semester"
|
msgid "One semester"
|
||||||
msgstr "Un semestre"
|
msgstr "Un semestre, 15 €"
|
||||||
|
|
||||||
#: sith/settings.py:342 sith/settings_sample.py:324
|
#: sith/settings.py:342 sith/settings_sample.py:324
|
||||||
msgid "Two semesters"
|
msgid "Two semesters"
|
||||||
msgstr "Deux semestres"
|
msgstr "Deux semestres, 28 €"
|
||||||
|
|
||||||
#: sith/settings.py:347 sith/settings_sample.py:329
|
#: sith/settings.py:347 sith/settings_sample.py:329
|
||||||
msgid "Common core cursus"
|
msgid "Common core cursus"
|
||||||
msgstr "Cursus tronc commun"
|
msgstr "Cursus tronc commun, 45 €"
|
||||||
|
|
||||||
#: sith/settings.py:352 sith/settings.py:357 sith/settings_sample.py:334
|
#: sith/settings.py:352 sith/settings.py:357 sith/settings_sample.py:334
|
||||||
#: sith/settings_sample.py:339
|
#: sith/settings_sample.py:339
|
||||||
msgid "Branch cursus"
|
msgid "Branch cursus"
|
||||||
msgstr "Cursus branche"
|
msgstr "Cursus branche, 45 €"
|
||||||
|
|
||||||
#: sith/settings.py:362 sith/settings_sample.py:344
|
#: sith/settings.py:362 sith/settings_sample.py:344
|
||||||
msgid "Honorary member"
|
msgid "Honorary member"
|
||||||
msgstr "Membre honoraire"
|
msgstr "Membre honoraire, 0 €"
|
||||||
|
|
||||||
#: sith/settings.py:367 sith/settings_sample.py:349
|
#: sith/settings.py:367 sith/settings_sample.py:349
|
||||||
msgid "Assidu member"
|
msgid "Assidu member"
|
||||||
msgstr "Membre d'Assidu"
|
msgstr "Membre d'Assidu, 0 €"
|
||||||
|
|
||||||
#: sith/settings.py:372 sith/settings_sample.py:354
|
#: sith/settings.py:372 sith/settings_sample.py:354
|
||||||
msgid "Amicale/DOCEO member"
|
msgid "Amicale/DOCEO member"
|
||||||
msgstr "Membre de l'Amicale/DOCEO"
|
msgstr "Membre de l'Amicale/DOCEO, 0 €"
|
||||||
|
|
||||||
#: sith/settings.py:377 sith/settings_sample.py:359
|
#: sith/settings.py:377 sith/settings_sample.py:359
|
||||||
msgid "UT network member"
|
msgid "UT network member"
|
||||||
msgstr "Cotisant du réseau UT"
|
msgstr "Cotisant du réseau UT, 0 €"
|
||||||
|
|
||||||
#: sith/settings.py:382 sith/settings_sample.py:364
|
#: sith/settings.py:382 sith/settings_sample.py:364
|
||||||
msgid "CROUS member"
|
msgid "CROUS member"
|
||||||
msgstr "Membres du CROUS"
|
msgstr "Membres du CROUS, 0 €"
|
||||||
|
|
||||||
#: sith/settings.py:387 sith/settings_sample.py:369
|
#: sith/settings.py:387 sith/settings_sample.py:369
|
||||||
msgid "Sbarro/ESTA member"
|
msgid "Sbarro/ESTA member"
|
||||||
msgstr "Membre de Sbarro ou de l'ESTA"
|
msgstr "Membre de Sbarro ou de l'ESTA, 15 €"
|
||||||
|
|
||||||
#: sith/settings.py:395 sith/settings_sample.py:377
|
#: sith/settings.py:395 sith/settings_sample.py:377
|
||||||
msgid "President"
|
msgid "President"
|
||||||
|
19
subscription/migrations/0002_auto_20160830_1719.py
Normal file
19
subscription/migrations/0002_auto_20160830_1719.py
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('subscription', '0001_initial'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='subscription',
|
||||||
|
name='location',
|
||||||
|
field=models.CharField(max_length=20, verbose_name='location', choices=[('BELFORT', 'Belfort'), ('SEVENANS', 'Sevenans'), ('MONTBELIARD', 'Montbéliard'), ('EBOUTIC', 'Eboutic')]),
|
||||||
|
),
|
||||||
|
]
|
Loading…
Reference in New Issue
Block a user