Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Sith
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
59
Issues
59
List
Boards
Labels
Service Desk
Milestones
Merge Requests
9
Merge Requests
9
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
AE
Sith
Commits
5fb57e97
Commit
5fb57e97
authored
Oct 22, 2017
by
Krophil
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add possibility to not link an operation
parent
cd4b0d8e
Pipeline
#1373
passed with stage
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
135 additions
and
121 deletions
+135
-121
accounting/templates/accounting/operation_edit.jinja
accounting/templates/accounting/operation_edit.jinja
+8
-0
accounting/views.py
accounting/views.py
+2
-1
locale/fr/LC_MESSAGES/django.po
locale/fr/LC_MESSAGES/django.po
+125
-120
No files found.
accounting/templates/accounting/operation_edit.jinja
View file @
5fb57e97
...
...
@@ -30,6 +30,7 @@
{{
form.club_account
}}
{{
form.company
}}
{{
form.target_label
}}
<span
id=
"id_need_link_full"
><label>
{{
form.need_link.label
}}
</label>
{{
form.need_link
}}
</span>
<p>
{{
form.date.errors
}}
<label
for=
"
{{
form.date.name
}}
"
>
{{
form.date.label
}}
</label>
{{
form.date
}}
</p>
<p>
{{
form.mode.errors
}}
<label
for=
"
{{
form.mode.name
}}
"
>
{{
form.mode.label
}}
</label>
{{
form.mode
}}
</p>
<p>
{{
form.cheque_number.errors
}}
<label
for=
"
{{
form.cheque_number.name
}}
"
>
{{
form.cheque_number.label
}}
</label>
{{
...
...
@@ -65,6 +66,7 @@
var
club_account
=
$
(
'
#id_club_account_wrapper
'
);
var
company
=
$
(
'
#id_company_wrapper
'
);
var
other
=
$
(
'
#id_target_label
'
);
var
need_link
=
$
(
'
#id_need_link_full
'
);
function
update_targets
()
{
if
(
target_type
.
val
()
==
"
USER
"
)
{
console
.
log
(
user
);
...
...
@@ -73,8 +75,10 @@
club_account
.
hide
();
company
.
hide
();
other
.
hide
();
need_link
.
hide
();
}
else
if
(
target_type
.
val
()
==
"
ACCOUNT
"
)
{
club_account
.
show
();
need_link
.
show
();
user
.
hide
();
club
.
hide
();
company
.
hide
();
...
...
@@ -85,24 +89,28 @@
club_account
.
hide
();
company
.
hide
();
other
.
hide
();
need_link
.
hide
();
}
else
if
(
target_type
.
val
()
==
"
COMPANY
"
)
{
company
.
show
();
user
.
hide
();
club_account
.
hide
();
club
.
hide
();
other
.
hide
();
need_link
.
hide
();
}
else
if
(
target_type
.
val
()
==
"
OTHER
"
)
{
other
.
show
();
user
.
hide
();
club
.
hide
();
club_account
.
hide
();
company
.
hide
();
need_link
.
hide
();
}
else
{
company
.
hide
();
user
.
hide
();
club_account
.
hide
();
club
.
hide
();
other
.
hide
();
need_link
.
hide
();
}
}
update_targets
();
...
...
accounting/views.py
View file @
5fb57e97
...
...
@@ -304,6 +304,7 @@ class OperationForm(forms.ModelForm):
club_account
=
AutoCompleteSelectField
(
'club_accounts'
,
help_text
=
None
,
required
=
False
)
club
=
AutoCompleteSelectField
(
'clubs'
,
help_text
=
None
,
required
=
False
)
company
=
AutoCompleteSelectField
(
'companies'
,
help_text
=
None
,
required
=
False
)
need_link
=
forms
.
BooleanField
(
label
=
_
(
"Link this operation to the target account"
),
required
=
False
,
initial
=
False
)
def
__init__
(
self
,
*
args
,
**
kwargs
):
club_account
=
kwargs
.
pop
(
'club_account'
,
None
)
...
...
@@ -341,7 +342,7 @@ class OperationForm(forms.ModelForm):
def
save
(
self
):
ret
=
super
(
OperationForm
,
self
).
save
()
if
self
.
instance
.
target_type
==
"ACCOUNT"
and
not
self
.
instance
.
linked_operation
and
self
.
instance
.
target
.
has_open_journal
():
if
self
.
instance
.
target_type
==
"ACCOUNT"
and
not
self
.
instance
.
linked_operation
and
self
.
instance
.
target
.
has_open_journal
()
and
self
.
cleaned_data
[
'need_link'
]
:
inst
=
self
.
instance
club_account
=
inst
.
target
acc_type
=
AccountingType
.
objects
.
exclude
(
movement_type
=
"NEUTRAL"
).
exclude
(
...
...
locale/fr/LC_MESSAGES/django.po
View file @
5fb57e97
...
...
@@ -6,7 +6,7 @@
msgid
""
msgstr
""
"Report-Msgid-Bugs-To:
\n
"
"POT-Creation-Date: 2017-10-
11 12:22
+0200
\n
"
"POT-Creation-Date: 2017-10-
22 22:27
+0200
\n
"
"PO-Revision-Date: 2016-07-18
\n
"
"Last-Translator: Skia <skia@libskia.so>
\n
"
"Language-Team: AE info <ae.info@utbm.fr>
\n
"
...
...
@@ -18,7 +18,7 @@ msgstr ""
#: accounting/models.py:61 accounting/models.py:110 accounting/models.py:138
#: accounting/models.py:197 club/models.py:47
#: core/templates/core/base.jinja:
298
counter/models.py:113
#: core/templates/core/base.jinja:
301
counter/models.py:113
#: counter/models.py:139 counter/models.py:183 forum/models.py:49
#: launderette/models.py:38 launderette/models.py:84 launderette/models.py:110
#: stock/models.py:38 stock/models.py:54 stock/models.py:77 stock/models.py:97
...
...
@@ -216,7 +216,7 @@ msgstr "Compte"
msgid
"Company"
msgstr
"Entreprise"
#: accounting/models.py:271 sith/settings.py:37
2
#: accounting/models.py:271 sith/settings.py:37
5
#: stock/templates/stock/shopping_list_items.jinja:37
msgid
"Other"
msgstr
"Autre"
...
...
@@ -278,14 +278,14 @@ msgstr "type de mouvement"
#: accounting/models.py:372
#: accounting/templates/accounting/journal_statement_nature.jinja:9
#: accounting/templates/accounting/journal_statement_person.jinja:12
#: accounting/views.py:48
1
#: accounting/views.py:48
2
msgid
"Credit"
msgstr
"Crédit"
#: accounting/models.py:372
#: accounting/templates/accounting/journal_statement_nature.jinja:28
#: accounting/templates/accounting/journal_statement_person.jinja:40
#: accounting/views.py:48
1
#: accounting/views.py:48
2
msgid
"Debit"
msgstr
"Débit"
...
...
@@ -750,11 +750,11 @@ msgstr ""
"créée dans le compte cible. Si vous ne le voulez pas, sélectionnez <em>Club</"
"em> à la place de <em>Compte</em>."
#: accounting/templates/accounting/operation_edit.jinja:4
6
#: accounting/templates/accounting/operation_edit.jinja:4
7
msgid
"Linked operation:"
msgstr
"Opération liée : "
#: accounting/templates/accounting/operation_edit.jinja:5
4
#: accounting/templates/accounting/operation_edit.jinja:5
5
#: com/templates/com/news_edit.jinja:57 com/templates/com/weekmail.jinja:74
#: core/templates/core/create.jinja:12 core/templates/core/edit.jinja:7
#: core/templates/core/edit.jinja.py:15 core/templates/core/edit.jinja:20
...
...
@@ -775,7 +775,7 @@ msgstr "Sauver"
#: accounting/templates/accounting/refound_account.jinja:4
#: accounting/templates/accounting/refound_account.jinja:9
#: accounting/views.py:75
7
#: accounting/views.py:75
8
msgid
"Refound account"
msgstr
"Remboursement de compte"
...
...
@@ -796,7 +796,7 @@ msgstr "Types simplifiés"
msgid
"New simplified type"
msgstr
"Nouveau type simplifié"
#: accounting/views.py:208 accounting/views.py:215 accounting/views.py:46
4
#: accounting/views.py:208 accounting/views.py:215 accounting/views.py:46
5
msgid
"Journal"
msgstr
"Classeur"
...
...
@@ -812,67 +812,71 @@ msgstr "Bilan par personne"
msgid
"Accounting statement"
msgstr
"Bilan comptable"
#: accounting/views.py:326
#: accounting/views.py:307
msgid
"Link this operation to the target account"
msgstr
"Lier cette opération au compte cible"
#: accounting/views.py:327
msgid
"The target must be set."
msgstr
"La cible doit être indiquée."
#: accounting/views.py:33
8
#: accounting/views.py:33
9
msgid
"The amount must be set."
msgstr
"Le montant doit être indiqué."
#: accounting/views.py:45
8 accounting/views.py:464
#: accounting/views.py:45
9 accounting/views.py:465
msgid
"Operation"
msgstr
"Opération"
#: accounting/views.py:47
4
#: accounting/views.py:47
5
msgid
"Financial proof: "
msgstr
"Justificatif de libellé : "
#: accounting/views.py:47
5
#: accounting/views.py:47
6
#, python-format
msgid
"Club: %(club_name)s"
msgstr
"Club : %(club_name)s"
#: accounting/views.py:47
6
#: accounting/views.py:47
7
#, python-format
msgid
"Label: %(op_label)s"
msgstr
"Libellé : %(op_label)s"
#: accounting/views.py:47
7
#: accounting/views.py:47
8
#, python-format
msgid
"Date: %(date)s"
msgstr
"Date : %(date)s"
#: accounting/views.py:48
3
#: accounting/views.py:48
4
#, python-format
msgid
"Amount: %(amount).2f €"
msgstr
"Montant : %(amount).2f €"
#: accounting/views.py:49
5
#: accounting/views.py:49
6
msgid
"Debtor"
msgstr
"Débiteur"
#: accounting/views.py:49
5
#: accounting/views.py:49
6
msgid
"Creditor"
msgstr
"Créditeur"
#: accounting/views.py:49
7
#: accounting/views.py:49
8
msgid
"Comment:"
msgstr
"Commentaire :"
#: accounting/views.py:51
6
#: accounting/views.py:51
7
msgid
"Signature:"
msgstr
"Signature :"
#: accounting/views.py:57
3
#: accounting/views.py:57
4
msgid
"General statement"
msgstr
"Bilan général"
#: accounting/views.py:57
6
#: accounting/views.py:57
7
msgid
"No label operations"
msgstr
"Opérations sans étiquette"
#: accounting/views.py:71
8
#: accounting/views.py:71
9
msgid
"Refound this account"
msgstr
"Rembourser ce compte"
...
...
@@ -1232,7 +1236,7 @@ msgstr "Anciens membres"
msgid
"History"
msgstr
"Historique"
#: club/views.py:121 core/templates/core/base.jinja:11
6
core/views/user.py:180
#: club/views.py:121 core/templates/core/base.jinja:11
9
core/views/user.py:180
#: sas/templates/sas/picture.jinja:95 trombi/views.py:55
msgid
"Tools"
msgstr
"Outils"
...
...
@@ -1453,7 +1457,7 @@ msgstr "Type"
#: com/templates/com/news_admin_list.jinja:249
#: com/templates/com/news_admin_list.jinja:286
#: com/templates/com/weekmail.jinja:19 com/templates/com/weekmail.jinja:48
#: core/templates/core/base.jinja:3
08
forum/templates/forum/forum.jinja:29
#: core/templates/core/base.jinja:3
11
forum/templates/forum/forum.jinja:29
#: forum/templates/forum/forum.jinja:48 forum/templates/forum/main.jinja:25
#: forum/views.py:159
msgid
"Title"
...
...
@@ -1891,7 +1895,7 @@ msgstr "-"
msgid
"XS"
msgstr
"XS"
#: core/models.py:172 core/templates/core/base.jinja:32
1
#: core/models.py:172 core/templates/core/base.jinja:32
4
msgid
"S"
msgstr
"S"
...
...
@@ -2176,67 +2180,67 @@ msgstr "404. Non trouvé"
msgid
"Welcome!"
msgstr
"Bienvenue!"
#: core/templates/core/base.jinja:
47
#: core/templates/core/base.jinja:
50
msgid
"Username"
msgstr
"Nom d'utilisateur"
#: core/templates/core/base.jinja:
49
#: core/templates/core/base.jinja:
52
msgid
"Password"
msgstr
"Mot de passe"
#: core/templates/core/base.jinja:5
1
core/templates/core/login.jinja:4
#: core/templates/core/base.jinja:5
4
core/templates/core/login.jinja:4
#: core/templates/core/password_reset_complete.jinja:5
msgid
"Login"
msgstr
"Connexion"
#: core/templates/core/base.jinja:5
3
core/templates/core/register.jinja:18
#: core/templates/core/base.jinja:5
6
core/templates/core/register.jinja:18
msgid
"Register"
msgstr
"S'enregister"
#: core/templates/core/base.jinja:
78 core/templates/core/base.jinja.py:79
#: core/templates/core/base.jinja:
81 core/templates/core/base.jinja.py:82
#: matmat/templates/matmat/search_form.jinja:50
#: matmat/templates/matmat/search_form.jinja:60
#: matmat/templates/matmat/search_form.jinja:71
msgid
"Search"
msgstr
"Recherche"
#: core/templates/core/base.jinja:10
5
#: core/templates/core/base.jinja:10
8
msgid
"View more"
msgstr
"Voir plus"
#: core/templates/core/base.jinja:1
09
#: core/templates/core/base.jinja:1
12
#: forum/templates/forum/last_unread.jinja:16
msgid
"Mark all as read"
msgstr
"Marquer tout commme lu"
#: core/templates/core/base.jinja:1
19
#: core/templates/core/base.jinja:1
22
msgid
"Logout"
msgstr
"Déconnexion"
#: core/templates/core/base.jinja:15
2
#: core/templates/core/base.jinja:15
5
msgid
"Main"
msgstr
"Accueil"
#: core/templates/core/base.jinja:15
3
core/templates/core/search.jinja:18
#: core/templates/core/base.jinja:15
6
core/templates/core/search.jinja:18
#: core/views/user.py:197 counter/templates/counter/stats.jinja:17
msgid
"Clubs"
msgstr
"Clubs"
#: core/templates/core/base.jinja:15
4
#: core/templates/core/base.jinja:15
7
msgid
"Matmatronch"
msgstr
"Matmatronch"
#: core/templates/core/base.jinja:15
5
#: core/templates/core/base.jinja:15
8
msgid
"Wiki"
msgstr
"Wiki"
#: core/templates/core/base.jinja:15
6
sas/templates/sas/album.jinja:4
#: core/templates/core/base.jinja:15
9
sas/templates/sas/album.jinja:4
#: sas/templates/sas/main.jinja:4 sas/templates/sas/main.jinja.py:32
#: sas/templates/sas/picture.jinja:34
msgid
"SAS"
msgstr
"SAS"
#: core/templates/core/base.jinja:1
57
forum/templates/forum/forum.jinja:10
#: core/templates/core/base.jinja:1
60
forum/templates/forum/forum.jinja:10
#: forum/templates/forum/last_unread.jinja:13
#: forum/templates/forum/main.jinja:6 forum/templates/forum/main.jinja.py:11
#: forum/templates/forum/main.jinja:14 forum/templates/forum/reply.jinja:15
...
...
@@ -2244,84 +2248,84 @@ msgstr "SAS"
msgid
"Forum"
msgstr
"Forum"
#: core/templates/core/base.jinja:1
58
#: core/templates/core/base.jinja:1
61
msgid
"Services"
msgstr
"Services"
#: core/templates/core/base.jinja:1
59
core/templates/core/file.jinja:20
#: core/templates/core/base.jinja:1
62
core/templates/core/file.jinja:20
#: core/views/files.py:75
msgid
"Files"
msgstr
"Fichiers"
#: core/templates/core/base.jinja:16
0
#: core/templates/core/base.jinja:16
3
msgid
"Sponsors"
msgstr
"Partenaires"
#: core/templates/core/base.jinja:16
1
#: core/templates/core/base.jinja:16
4
msgid
"Help"
msgstr
"Aide"
#: core/templates/core/base.jinja:20
1
#: core/templates/core/base.jinja:20
4
msgid
"Contacts"
msgstr
"Contacts"
#: core/templates/core/base.jinja:20
2
#: core/templates/core/base.jinja:20
5
msgid
"Legal notices"
msgstr
"Mentions légales"
#: core/templates/core/base.jinja:20
3
#: core/templates/core/base.jinja:20
6
msgid
"Intellectual property"
msgstr
"Propriété intellectuelle"
#: core/templates/core/base.jinja:20
4
#: core/templates/core/base.jinja:20
7
msgid
"Help & Documentation"
msgstr
"Aide & Documentation"
#: core/templates/core/base.jinja:20
5
#: core/templates/core/base.jinja:20
8
msgid
"R&D"
msgstr
"R&D"
#: core/templates/core/base.jinja:20
6
#: core/templates/core/base.jinja:20
9
msgid
"Former website"
msgstr
"Ancien site"
#: core/templates/core/base.jinja:2
08
#: core/templates/core/base.jinja:2
11
msgid
"Site made by good people"
msgstr
"Site réalisé par des gens bons"
#: core/templates/core/base.jinja:30
5
#: core/templates/core/base.jinja:30
8
msgid
"https://path/to/image.gif"
msgstr
"https://chemin/vers/image.gif"
#: core/templates/core/base.jinja:3
07
#: core/templates/core/base.jinja:3
10
msgid
"alternative text"
msgstr
"texte alternatif"
#: core/templates/core/base.jinja:3
17
#: core/templates/core/base.jinja:3
20
msgid
"Image"
msgstr
"Image"
#: core/templates/core/base.jinja:3
18
#: core/templates/core/base.jinja:3
21
msgid
"Link"
msgstr
"Lien"
#: core/templates/core/base.jinja:3
19
#: core/templates/core/base.jinja:3
22
msgid
"sup"
msgstr
"exp"
#: core/templates/core/base.jinja:32
0
#: core/templates/core/base.jinja:32
3
msgid
"sub"
msgstr
"ind"
#: core/templates/core/base.jinja:32
2
#: core/templates/core/base.jinja:32
5
msgid
"U"
msgstr
"S"
#: core/templates/core/base.jinja:32
3
#: core/templates/core/base.jinja:32
6
msgid
"I"
msgstr
"I"
#: core/templates/core/base.jinja:32
4
#: core/templates/core/base.jinja:32
7
msgid
"B"
msgstr
"G"
...
...
@@ -2929,6 +2933,7 @@ msgid "No godchildren"
msgstr
"Pas de fillots"
#: core/templates/core/user_godfathers_tree.jinja:5
#, python-format
msgid
"%(user_name)s's godchildren"
msgstr
"Fillots de %(user_name)s"
...
...
@@ -3319,7 +3324,7 @@ msgstr "Bureau"
#: eboutic/templates/eboutic/eboutic_main.jinja:24
#: eboutic/templates/eboutic/eboutic_makecommand.jinja:8
#: eboutic/templates/eboutic/eboutic_payment_result.jinja:4
#: sith/settings.py:37
1 sith/settings.py:379
#: sith/settings.py:37
4 sith/settings.py:382
msgid
"Eboutic"
msgstr
"Eboutic"
...
...
@@ -3360,8 +3365,8 @@ msgstr "quantité"
msgid
"Sith account"
msgstr
"Compte utilisateur"
#: counter/models.py:352 sith/settings.py:36
4 sith/settings.py:369
#: sith/settings.py:39
1
#: counter/models.py:352 sith/settings.py:36
7 sith/settings.py:372
#: sith/settings.py:39
4
msgid
"Credit card"
msgstr
"Carte bancaire"
...
...
@@ -4231,12 +4236,12 @@ msgid "Washing and drying"
msgstr
"Lavage et séchage"
#: launderette/templates/launderette/launderette_book.jinja:27
#: sith/settings.py:55
4
#: sith/settings.py:55
7
msgid
"Washing"
msgstr
"Lavage"
#: launderette/templates/launderette/launderette_book.jinja:31
#: sith/settings.py:55
4
#: sith/settings.py:55
7
msgid
"Drying"
msgstr
"Séchage"
...
...
@@ -4419,223 +4424,223 @@ msgstr "Anglais"
msgid
"French"
msgstr
"Français"
#: sith/settings.py:34
5
#: sith/settings.py:34
8
msgid
"TC"
msgstr
"TC"
#: sith/settings.py:34
6
#: sith/settings.py:34
9
msgid
"IMSI"
msgstr
"IMSI"
#: sith/settings.py:3
47
#: sith/settings.py:3
50
msgid
"IMAP"
msgstr
"IMAP"
#: sith/settings.py:3
48
#: sith/settings.py:3
51
msgid
"INFO"
msgstr
"INFO"
#: sith/settings.py:3
49
#: sith/settings.py:3
52
msgid
"GI"
msgstr
"GI"
#: sith/settings.py:35
0
#: sith/settings.py:35
3
msgid
"E"
msgstr
"E"
#: sith/settings.py:35
1
#: sith/settings.py:35
4
msgid
"EE"
msgstr
"EE"
#: sith/settings.py:35
2
#: sith/settings.py:35
5
msgid
"GESC"
msgstr
"GESC"
#: sith/settings.py:35
3
#: sith/settings.py:35
6
msgid
"GMC"
msgstr
"GMC"
#: sith/settings.py:35
4
#: sith/settings.py:35
7
msgid
"MC"
msgstr
"MC"
#: sith/settings.py:35
5
#: sith/settings.py:35
8
msgid
"EDIM"
msgstr
"EDIM"
#: sith/settings.py:35
6
#: sith/settings.py:35
9
msgid
"Humanities"
msgstr
"Humanités"
#: sith/settings.py:3
57
#: sith/settings.py:3
60
msgid
"N/A"
msgstr
"N/A"
#: sith/settings.py:36
1 sith/settings.py:368 sith/settings.py:389
#: sith/settings.py:36
4 sith/settings.py:371 sith/settings.py:392
msgid
"Check"
msgstr
"Chèque"
#: sith/settings.py:36
2 sith/settings.py:370 sith/settings.py:390
#: sith/settings.py:36
5 sith/settings.py:373 sith/settings.py:393
msgid
"Cash"
msgstr
"Espèces"
#: sith/settings.py:36
3
#: sith/settings.py:36
6
msgid
"Transfert"
msgstr
"Virement"
#: sith/settings.py:37
6
#: sith/settings.py:37
9
msgid
"Belfort"
msgstr
"Belfort"
#: sith/settings.py:3
77
#: sith/settings.py:3
80
msgid
"Sevenans"
msgstr
"Sevenans"
#: sith/settings.py:3
78
#: sith/settings.py:3
81
msgid
"Montbéliard"
msgstr
"Montbéliard"
#: sith/settings.py:43
6
#: sith/settings.py:43
9
msgid
"One semester"
msgstr
"Un semestre, 15 €"
#: sith/settings.py:44
1
#: sith/settings.py:44
4
msgid
"Two semesters"
msgstr
"Deux semestres, 28 €"
#: sith/settings.py:44
6
#: sith/settings.py:44
9
msgid
"Common core cursus"
msgstr
"Cursus tronc commun, 45 €"
#: sith/settings.py:45
1
#: sith/settings.py:45
4
msgid
"Branch cursus"
msgstr
"Cursus branche, 45 €"
#: sith/settings.py:45
6
#: sith/settings.py:45
9
msgid
"Alternating cursus"
msgstr
"Cursus alternant, 30 €"
#: sith/settings.py:46
1
#: sith/settings.py:46
4
msgid
"Honorary member"
msgstr
"Membre honoraire, 0 €"
#: sith/settings.py:46
6
#: sith/settings.py:46
9
msgid
"Assidu member"
msgstr
"Membre d'Assidu, 0 €"
#: sith/settings.py:47
1
#: sith/settings.py:47
4
msgid
"Amicale/DOCEO member"
msgstr
"Membre de l'Amicale/DOCEO, 0 €"
#: sith/settings.py:47
6
#: sith/settings.py:47
9
msgid
"UT network member"
msgstr
"Cotisant du réseau UT, 0 €"
#: sith/settings.py:48
1
#: sith/settings.py:48
4
msgid
"CROUS member"
msgstr
"Membres du CROUS, 0 €"
#: sith/settings.py:48
6
#: sith/settings.py:48
9
msgid
"Sbarro/ESTA member"
msgstr
"Membre de Sbarro ou de l'ESTA, 15 €"
#: sith/settings.py:49
1
#: sith/settings.py:49
4
msgid
"One semester Welcome Week"
msgstr
"Un semestre Welcome Week"
#: sith/settings.py:49
6
#: sith/settings.py:49
9
msgid
"Two month for free"
msgstr
"Deux mois gratuits"
#: sith/settings.py:5
18
#: sith/settings.py:5
21
msgid
"President"
msgstr
"Président"
#: sith/settings.py:5
19
#: sith/settings.py:5
22
msgid
"Vice-President"
msgstr
"Vice-Président"
#: sith/settings.py:52
0
#: sith/settings.py:52
3
msgid
"Treasurer"
msgstr
"Trésorier"