Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
AE UTBM
Sith
Commits
a0322fa9
Commit
a0322fa9
authored
Jul 22, 2016
by
Skia
🤘
Browse files
Templating pages
parent
f04cf9d4
Pipeline
#64
failed with stage
in 1 minute and 6 seconds
Changes
8
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
core/static/core/style.css
View file @
a0322fa9
...
...
@@ -55,6 +55,7 @@ nav a:hover {
margin
:
0px
auto
;
padding
:
1em
1%
;
background
:
white
;
overflow
:
auto
;
}
h1
,
h2
,
h3
,
h4
,
h5
,
h6
{
...
...
@@ -129,6 +130,12 @@ tbody>tr:hover {
background
:
yellow
;
width
:
100%
;
}
.tool-bar
{
overflow
:
auto
;
}
.tools
{
float
:
right
;
}
#basket
{
width
:
40%
;
background
:
lightgrey
;
...
...
core/templates/core/base.jinja
View file @
a0322fa9
...
...
@@ -27,7 +27,8 @@
{%
endblock
%}
<nav>
<a
href=
"
{{
url
(
'core:user_list'
)
}}
"
>
{%
trans
%}
Users
{%
endtrans
%}
</a>
<a
href=
"
{{
url
(
'core:page'
,
page_name
=
"Index"
)
}}
"
>
{%
trans
%}
Pages
{%
endtrans
%}
</a>
<a
href=
"
{{
url
(
'core:page'
,
page_name
=
"Index"
)
}}
"
>
{%
trans
%}
Wiki
{%
endtrans
%}
</a>
<a
href=
"
{{
url
(
'core:page_list'
)
}}
"
>
{%
trans
%}
Pages
{%
endtrans
%}
</a>
<a
href=
"
{{
url
(
'club:club_list'
)
}}
"
>
{%
trans
%}
Clubs
{%
endtrans
%}
</a>
</nav>
...
...
core/templates/core/page.jinja
View file @
a0322fa9
...
...
@@ -12,7 +12,32 @@
{%
endif
%}
{%
endblock
%}
{%
macro
print_page_name
(
page
)
%}
{%
if
page
%}
{{
print_page_name
(
page.parent
)
}}
>
<a
href=
"
{{
url
(
'core:page'
,
page_name
=
page.get_full_name
())
}}
"
>
{{
page.name
}}
</a>
{%
endif
%}
{%
endmacro
%}
{%
block
content
%}
{{
print_page_name
(
page
)
}}
<div
class=
"tool-bar"
>
<div
class=
"tools"
>
{%
if
page
%}
<a
href=
"
{{
url
(
'core:page'
,
page.get_full_name
())
}}
"
>
{%
trans
%}
View
{%
endtrans
%}
</a>
<a
href=
"
{{
url
(
'core:page_hist'
,
page_name
=
page.get_full_name
())
}}
"
>
{%
trans
%}
History
{%
endtrans
%}
</a>
{%
if
can_edit
(
page
,
user
)
%}
<a
href=
"
{{
url
(
'core:page_edit'
,
page_name
=
page.get_full_name
())
}}
"
>
{%
trans
%}
Edit
{%
endtrans
%}
</a>
{%
endif
%}
{%
if
can_edit_prop
(
page
,
user
)
%}
<a
href=
"
{{
url
(
'core:page_prop'
,
page_name
=
page.get_full_name
())
}}
"
>
{%
trans
%}
Prop
{%
endtrans
%}
</a>
{%
endif
%}
{%
endif
%}
</div>
</div>
<hr>
{%
if
page
%}
{%
block
page
%}
{%
endblock
%}
...
...
core/templates/core/page_detail.jinja
View file @
a0322fa9
{%
extends
"core/page.jinja"
%}
{%
block
page
%}
<h3>
{%
trans
%}
Page
{%
endtrans
%}
</h3>
<p><a
href=
"
{{
url
(
'core:page_list'
)
}}
"
>
{%
trans
%}
Back to list
{%
endtrans
%}
</a></p>
{%
if
can_edit
(
page
,
user
)
%}
<p><a
href=
"
{{
url
(
'core:page_edit'
,
page_name
=
page.get_full_name
())
}}
"
>
{%
trans
%}
Edit
{%
endtrans
%}
</a></p>
{%
endif
%}
{%
if
can_edit_prop
(
page
,
user
)
%}
<p><a
href=
"
{{
url
(
'core:page_prop'
,
page_name
=
page.get_full_name
())
}}
"
>
{%
trans
%}
Prop
{%
endtrans
%}
</a></p>
{%
endif
%}
<p>
{%
trans
page_name
=
page.get_display_name
()
%}
You're seeing the page
{{
page_name
}}{%
endtrans
%}
-
<a
href=
"
{{
url
(
'core:page_hist'
,
page_name
=
page.get_full_name
())
}}
"
>
{%
trans
%}
History
{%
endtrans
%}
</a></p>
<hr>
{%
if
rev
%}
<h4>
{%
trans
rev_id
=
rev.id
%}
This may not be the last update, you are seeing revision
{{
rev_id
}}
!
{%
endtrans
%}
</h4>
<h3>
{{
rev.title
}}
</h3>
<div
class=
"page_content"
>
{{
rev.content
|
markdown
}}
</div>
{%
else
%}
{%
if
page.revisions.last
()
%}
<h3>
{{
page.revisions.last
()
.
title
}}
</h3>
<div
class=
"page_content"
>
{{
page.revisions.last
()
.
content
|
markdown
}}
</div>
{%
endif
%}
{%
endif
%}
{%
endblock
%}
...
...
core/templates/core/page_hist.jinja
View file @
a0322fa9
...
...
@@ -2,14 +2,16 @@
{%
block
page
%}
<h3>
{%
trans
%}
Page history
{%
endtrans
%}
</h3>
<p><a
href=
"
{{
url
(
'core:page'
,
page.get_full_name
())
}}
"
>
{%
trans
%}
Back to page
{%
endtrans
%}
</a></p>
<p>
{%
trans
page_name
=
page.get_display_name
()
%}
You're seeing the history of page
{{
page_name
}}{%
endtrans
%}
</p>
<p>
{%
trans
page_name
=
page.name
%}
You're seeing the history of page "
{{
page_name
}}
"
{%
endtrans
%}
</p>
<ul>
{%
for
r
in
(
page.revisions.all
()
|
sort
(
attribute
=
'date'
,
reverse
=
True
))
%}
{%
if
loop.index
<
2
%}
<li><a
href=
"
{{
url
(
'core:page'
,
page_name
=
page.get_full_name
())
}}
"
>
last -
{{
page.revisions.last
()
.
author
}}
-
{{
page.revisions.last
()
.
date
|
date
(
'Y-m-d H:i'
)
}}
</a></li>
{%
for
r
in
(
page.revisions.all
()
|
sort
(
attribute
=
'date'
,
reverse
=
True
))[
1
:
]
%}
{%
else
%}
<li><a
href=
"
{{
url
(
'core:page_rev'
,
page_name
=
page.get_full_name
(),
rev
=
r
[
'id'
])
}}
"
>
{{
r
[
'author'
]
}}
-
{{
r
[
'date'
]
|
date
(
'Y-m-d H:i'
)
}}
</a></li>
{%
endif
%}
{%
endfor
%}
</ul>
{%
endblock
%}
...
...
core/templates/core/user_base.jinja
View file @
a0322fa9
{%
extends
"core/base.jinja"
%}
{%
block
content
%}
<div>
{{
profile.get_display_name
()
}}
</div>
<div
class=
"tool-bar"
>
<a
href=
"
{{
url
(
'core:user_profile'
,
user_id
=
profile.id
)
}}
"
>
{%
trans
%}
Infos
{%
endtrans
%}
</a>
{%
if
can_edit
(
profile
,
request.user
)
or
user.id
==
profile.id
%}
<a
href=
"
{{
url
(
'core:user_edit'
,
user_id
=
profile.id
)
}}
"
>
{%
trans
%}
Edit
{%
endtrans
%}
</a>
{%
endif
%}
{%
if
can_edit_prop
(
profile
,
request.user
)
%}
<a
href=
"
{{
url
(
'core:user_groups'
,
user_id
=
profile.id
)
}}
"
>
{%
trans
%}
Groups
{%
endtrans
%}
</a>
{%
endif
%}
{%
if
(
profile
==
request.user
or
request.user.is_in_group
(
settings.SITH_GROUPS
[
'accounting-admin'
][
'name'
])
or
request.user.is_in_group
(
settings.SITH_GROUPS
[
'root'
][
'name'
]))
%}
<a
href=
"
{{
url
(
'core:user_account'
,
user_id
=
profile.id
)
}}
"
>
{%
trans
%}
Account
{%
endtrans
%}
</a>
{%
endif
%}
<hr>
<div
class=
"tools"
>
<a
href=
"
{{
url
(
'core:user_profile'
,
user_id
=
profile.id
)
}}
"
>
{%
trans
%}
Infos
{%
endtrans
%}
</a>
{%
if
can_edit
(
profile
,
request.user
)
or
user.id
==
profile.id
%}
<a
href=
"
{{
url
(
'core:user_edit'
,
user_id
=
profile.id
)
}}
"
>
{%
trans
%}
Edit
{%
endtrans
%}
</a>
{%
endif
%}
{%
if
can_edit_prop
(
profile
,
request.user
)
%}
<a
href=
"
{{
url
(
'core:user_groups'
,
user_id
=
profile.id
)
}}
"
>
{%
trans
%}
Groups
{%
endtrans
%}
</a>
{%
endif
%}
{%
if
(
profile
==
request.user
or
request.user.is_in_group
(
settings.SITH_GROUPS
[
'accounting-admin'
][
'name'
])
or
request.user.is_in_group
(
settings.SITH_GROUPS
[
'root'
][
'name'
]))
%}
<a
href=
"
{{
url
(
'core:user_account'
,
user_id
=
profile.id
)
}}
"
>
{%
trans
%}
Account
{%
endtrans
%}
</a>
{%
endif
%}
</div>
<h5>
{{
profile.get_display_name
()
}}
</h5>
</div>
<hr>
<div>
{%
block
infos
%}
...
...
locale/fr/LC_MESSAGES/django.mo
View file @
a0322fa9
No preview for this file type
locale/fr/LC_MESSAGES/django.po
View file @
a0322fa9
...
...
@@ -6,7 +6,7 @@
msgid
""
msgstr
""
"Report-Msgid-Bugs-To:
\n
"
"POT-Creation-Date: 2016-07-2
1 17:39
+0200
\n
"
"POT-Creation-Date: 2016-07-2
2 01:47
+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
"
...
...
@@ -17,8 +17,8 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);
\n
"
#: accounting/models.py:32 accounting/models.py:55 accounting/models.py:94
#: club/models.py:18 counter/models.py:3
9
counter/models.py:5
8
#: counter/models.py:
80
#: club/models.py:18 counter/models.py:3
8
counter/models.py:5
7
#: counter/models.py:
79
msgid
"name"
msgstr
"nom"
...
...
@@ -30,11 +30,11 @@ msgstr "IBAN"
msgid
"account number"
msgstr
"numero de compte"
#: accounting/models.py:92 club/models.py:109 counter/models.py:21
5
#: accounting/models.py:92 club/models.py:109 counter/models.py:21
4
msgid
"start date"
msgstr
"date de début"
#: accounting/models.py:93 club/models.py:110 counter/models.py:21
6
#: accounting/models.py:93 club/models.py:110 counter/models.py:21
5
msgid
"end date"
msgstr
"date de fin"
...
...
@@ -42,8 +42,8 @@ msgstr "date de fin"
msgid
"is closed"
msgstr
"est fermé"
#: accounting/models.py:97 accounting/models.py:136 counter/models.py:2
2
#: counter/models.py:16
3
#: accounting/models.py:97 accounting/models.py:136 counter/models.py:2
1
#: counter/models.py:16
2
msgid
"amount"
msgstr
"montant"
...
...
@@ -55,8 +55,8 @@ msgstr "montant effectif"
msgid
"number"
msgstr
"numéro"
#: accounting/models.py:137 core/models.py:462 counter/models.py:16
6
#: counter/models.py:19
4
#: accounting/models.py:137 core/models.py:462 counter/models.py:16
5
#: counter/models.py:19
3 eboutic/models.py:17 eboutic/models.py:30
msgid
"date"
msgstr
"date"
...
...
@@ -68,7 +68,8 @@ msgstr "intitulé"
msgid
"remark"
msgstr
"remarque"
#: accounting/models.py:140 counter/models.py:167 subscription/models.py:34
#: accounting/models.py:140 counter/models.py:166 eboutic/models.py:32
#: subscription/models.py:34
msgid
"payment method"
msgstr
"méthode de paiement"
...
...
@@ -89,7 +90,7 @@ msgstr ""
"La date ne peut pas être avant la date de début du journal, qui est
\n
"
"%(start_date)s."
#: accounting/models.py:197 counter/models.py:6
1
#: accounting/models.py:197 counter/models.py:6
0
msgid
"code"
msgstr
"code"
...
...
@@ -143,8 +144,7 @@ msgstr "Nouveau compte club"
#: accounting/templates/accounting/bank_account_list.jinja:15
#: accounting/templates/accounting/club_account_details.jinja:44
#: accounting/templates/accounting/journal_details.jinja:51
#: club/templates/club/club_detail.jinja:7
#: core/templates/core/page_detail.jinja:7
#: club/templates/club/club_detail.jinja:7 core/templates/core/page.jinja:30
#: core/templates/core/user_base.jinja:8
#: core/templates/core/user_tools.jinja:30
#: counter/templates/counter/counter_list.jinja:14
...
...
@@ -227,10 +227,12 @@ msgid "No"
msgstr
"Non"
#: accounting/templates/accounting/club_account_details.jinja:43
#: core/templates/core/page.jinja:27
msgid
"View"
msgstr
"Voir"
#: accounting/templates/accounting/journal_details.jinja:10
#: counter/templates/counter/user_account.jinja:9
msgid
"Amount: "
msgstr
"Montant: "
...
...
@@ -302,7 +304,7 @@ msgstr "Adresse"
msgid
"You can not make loops in clubs"
msgstr
"Vous ne pouvez pas faire de boucles dans les clubs"
#: club/models.py:107
#: club/models.py:107
eboutic/models.py:16 eboutic/models.py:29
msgid
"user"
msgstr
"nom d'utilisateur"
...
...
@@ -314,8 +316,8 @@ msgstr "club"
msgid
"role"
msgstr
"rôle"
#: club/models.py:113 core/models.py:27 counter/models.py:
40
#: counter/models.py:5
9
#: club/models.py:113 core/models.py:27 counter/models.py:
39
#: counter/models.py:5
8
msgid
"description"
msgstr
"description"
...
...
@@ -337,12 +339,10 @@ msgstr "Club"
#: club/templates/club/club_detail.jinja:5
#: core/templates/core/group_edit.jinja:4
#: core/templates/core/page_detail.jinja:5
msgid
"Back to list"
msgstr
"Retour à la liste"
#: club/templates/club/club_detail.jinja:10
#: core/templates/core/page_detail.jinja:10
#: club/templates/club/club_detail.jinja:10 core/templates/core/page.jinja:33
msgid
"Prop"
msgstr
"Propriétés"
...
...
@@ -574,7 +574,7 @@ msgid "Confirm"
msgstr
"Confirmation"
#: core/templates/core/delete_confirm.jinja:8
#: counter/templates/counter/counter_click.jinja:6
5
#: counter/templates/counter/counter_click.jinja:6
7
msgid
"Cancel"
msgstr
"Annuler"
...
...
@@ -624,7 +624,7 @@ msgid "Please login to see this page."
msgstr
"Merci de vous identifier pour voir cette page."
#: core/templates/core/login.jinja:31
#: counter/templates/counter/counter_main.jinja:5
1
#: counter/templates/counter/counter_main.jinja:5
2
msgid
"login"
msgstr
"login"
...
...
@@ -645,28 +645,19 @@ msgstr "Créer une page"
msgid
"Not found"
msgstr
"Non trouvé"
#: core/templates/core/page.jinja:20
#: core/templates/core/page.jinja:28
msgid
"History"
msgstr
"Historique"
#: core/templates/core/page.jinja:43
msgid
"Page does not exist"
msgstr
"La page n'existe pas."
#: core/templates/core/page.jinja:
22
#: core/templates/core/page.jinja:
45
msgid
"Create it?"
msgstr
"La créer ?"
#: core/templates/core/page_detail.jinja:4
msgid
"Page"
msgstr
"Page"
#: core/templates/core/page_detail.jinja:12
#, python-format
msgid
"You're seeing the page %(page_name)s"
msgstr
"Vous consultez la page %(page_name)s"
#: core/templates/core/page_detail.jinja:13
msgid
"History"
msgstr
"Historique"
#: core/templates/core/page_detail.jinja:16
#: core/templates/core/page_detail.jinja:5
#, python-format
msgid
"This may not be the last update, you are seeing revision %(rev_id)s!"
msgstr
""
...
...
@@ -678,13 +669,8 @@ msgid "Page history"
msgstr
"Historique de la page"
#: core/templates/core/page_hist.jinja:5
msgid
"Back to page"
msgstr
"Retour à la page"
#: core/templates/core/page_hist.jinja:6
#, python-format
msgid
"You're seeing the history of page %(page_name)s"
msgstr
"Vous consultez l'historique de la page %(page_name)s"
msgid
"You're seeing the history of page
\"
%(page_name)s
\"
"
msgstr
"Vous consultez l'historique de la page
\"
%(page_name)s
\"
"
#: core/templates/core/page_list.jinja:16
msgid
"There is no page in this website."
...
...
@@ -883,51 +869,57 @@ msgstr "Comptabilité générale"
msgid
"Club account: "
msgstr
"Compte club : "
#: counter/models.py:2
1
#: counter/models.py:2
0
msgid
"account id"
msgstr
"numéro de compte"
#: counter/models.py:2
5
#: counter/models.py:2
4
msgid
"customer"
msgstr
"client"
#: counter/models.py:2
6
#: counter/models.py:2
5
msgid
"customers"
msgstr
"clients"
#: counter/models.py:6
2
#: counter/models.py:6
1
msgid
"purchase price"
msgstr
"prix d'achat"
#: counter/models.py:6
3
#: counter/models.py:6
2
msgid
"selling price"
msgstr
"prix de vente"
#: counter/models.py:6
4
#: counter/models.py:6
3
msgid
"special selling price"
msgstr
"prix de vente spécial"
#: counter/models.py:8
3
subscription/models.py:29
#: counter/models.py:8
2
subscription/models.py:29
msgid
"subscription type"
msgstr
"type d'inscription"
#: counter/models.py:8
5
#: counter/models.py:8
4
msgid
"Bar"
msgstr
"Bar"
#: counter/models.py:8
5
#: counter/models.py:8
4
msgid
"Office"
msgstr
"Bureau"
#: counter/models.py:169
#: counter/models.py:84 eboutic/templates/eboutic/eboutic_main.jinja:20
#: eboutic/templates/eboutic/eboutic_makecommand.jinja:4
#: eboutic/templates/eboutic/eboutic_payment_result.jinja:4
msgid
"Eboutic"
msgstr
"Eboutic"
#: counter/models.py:168
msgid
"bank"
msgstr
"banque"
#: counter/models.py:1
90
#: counter/models.py:1
89 eboutic/models.py:55
msgid
"unit price"
msgstr
"prix unitaire"
#: counter/models.py:19
1
#: counter/models.py:19
0 eboutic/models.py:56
msgid
"quantity"
msgstr
"quantité"
...
...
@@ -945,38 +937,42 @@ msgstr "Club : "
msgid
"Customer"
msgstr
"Client"
#: counter/templates/counter/counter_click.jinja:
29
#: counter/templates/counter/counter_click.jinja:
30
msgid
"Refilling"
msgstr
"Rechargement"
#: counter/templates/counter/counter_click.jinja:3
4
#: counter/templates/counter/counter_click.jinja:4
6
#: counter/templates/counter/counter_click.jinja:3
5
#: counter/templates/counter/counter_click.jinja:4
8
msgid
"Go"
msgstr
"Valider"
#: counter/templates/counter/counter_click.jinja:
38
#: counter/templates/counter/counter_click.jinja:
40
msgid
"Selling"
msgstr
"Vente"
#: counter/templates/counter/counter_click.jinja:4
0
#: counter/templates/counter/counter_click.jinja:4
2
msgid
"Not enough money"
msgstr
"Solde insuffisant"
#: counter/templates/counter/counter_click.jinja:48
#: counter/templates/counter/counter_click.jinja:50
#: eboutic/templates/eboutic/eboutic_main.jinja:23
#: eboutic/templates/eboutic/eboutic_makecommand.jinja:7
msgid
"Basket: "
msgstr
"Panier : "
#: counter/templates/counter/counter_click.jinja:5
6
#: counter/templates/counter/counter_click.jinja:5
8
#: counter/templates/counter/counter_main.jinja:28
#: eboutic/templates/eboutic/eboutic_main.jinja:31
msgid
"Total: "
msgstr
"Total : "
#: counter/templates/counter/counter_click.jinja:6
0
#: counter/templates/counter/counter_click.jinja:6
2
msgid
"Finish"
msgstr
"Terminer"
#: counter/templates/counter/counter_click.jinja:6
7
#: counter/templates/counter/counter_click.jinja:6
9
#: counter/templates/counter/counter_main.jinja:15
#: eboutic/templates/eboutic/eboutic_main.jinja:39
msgid
"Products: "
msgstr
"Produits : "
...
...
@@ -1025,7 +1021,7 @@ msgstr "valider"
msgid
"Please, login"
msgstr
"Merci de vous identifier"
#: counter/templates/counter/counter_main.jinja:4
2
#: counter/templates/counter/counter_main.jinja:4
3
msgid
"Barman: "
msgstr
"Barman : "
...
...
@@ -1038,87 +1034,139 @@ msgstr "Compte de %(user_name)s"
msgid
"User account"
msgstr
"Compte utilisateur"
#: counter/views.py:
194
#: counter/views.py:
200
msgid
"END"
msgstr
"FIN"
#: counter/views.py:
196
#: counter/views.py:
202
msgid
"CAN"
msgstr
"ANN"
#: sith/settings.py:227 sith/settings.py:234 sith/settings.py:246
#: sith/settings_sample.py:227 sith/settings_sample.py:234
#: sith/settings_sample.py:246
msgid
"Check"
msgstr
"Chèque"
#: counter/views.py:236
msgid
"You have not enough money to buy all the basket"
msgstr
"Vous n'avez pas assez d'argent pour acheter le panier"
#: eboutic/models.py:31 sith/settings.py:231 sith/settings_sample.py:231
msgid
"Credit card"
msgstr
"Carte banquaire"
#: eboutic/models.py:31
msgid
"Sith account"
msgstr
"Compte utilisateur"
#: eboutic/models.py:33
msgid
"validated"
msgstr
"validé"
#: eboutic/models.py:44
msgid
"Invoice already validated"
msgstr
"Facture déjà validée"
#: eboutic/models.py:54
msgid
"product name"
msgstr
"nom du produit"
#: eboutic/models.py:65
msgid
"basket"
msgstr
"panier"
#: eboutic/models.py:68
msgid
"invoice"
msgstr
"facture"
#: eboutic/templates/eboutic/eboutic_main.jinja:35
msgid
"Proceed to command"
msgstr
"Procéder à la commande"
#: eboutic/templates/eboutic/eboutic_makecommand.jinja:29
msgid
"Pay with credit card"
msgstr
"Payer avec une carte banquaire"
#: eboutic/templates/eboutic/eboutic_makecommand.jinja:34
msgid
"Pay with Sith account"
msgstr
"Payer avec un compte AE"
#: eboutic/templates/eboutic/eboutic_payment_result.jinja:8
msgid
"Payment failed"
msgstr
"Méthode de paiement"
#: eboutic/templates/eboutic/eboutic_payment_result.jinja:10
msgid
"Payment successful"
msgstr
"Méthode de paiement"
#: eboutic/views.py:117
msgid
"You have not enough money to buy the basket"
msgstr
"Vous n'avez pas assez d'argent pour acheter le panier"
#: sith/settings.py:228 sith/settings.py:235 sith/settings.py:247
#: sith/settings_sample.py:228 sith/settings_sample.py:235
#: sith/settings_sample.py:247
msgid
"Check"
msgstr
"Chèque"
#: sith/settings.py:229 sith/settings.py:236 sith/settings.py:248
#: sith/settings_sample.py:229 sith/settings_sample.py:236
#: sith/settings_sample.py:248
msgid
"Cash"
msgstr
"Espèces"
#: sith/settings.py:2
29
sith/settings_sample.py:2
29
#: sith/settings.py:2
30
sith/settings_sample.py:2
30
msgid
"Transfert"
msgstr
"Virement"
#: sith/settings.py:230 sith/settings_sample.py:230
msgid
"Credit card"
msgstr
"Carte banquaire"
#: sith/settings.py:236 sith/settings_sample.py:236
#: sith/settings.py:237 sith/settings_sample.py:237
msgid
"Other"
msgstr
"Autre"
#: sith/settings.py:26
0
sith/settings_sample.py:26
0
#: sith/settings.py:26
1
sith/settings_sample.py:26
1
msgid
"One semester"
msgstr
"Un semestre"
#: sith/settings.py:26
5
sith/settings_sample.py:26
5
#: sith/settings.py:26
6
sith/settings_sample.py:26
6
msgid
"Two semesters"
msgstr
"Deux semestres"
#: sith/settings.py:27
0
sith/settings_sample.py:27
0
#: sith/settings.py:27
1
sith/settings_sample.py:27
1
msgid
"Common core cursus"
msgstr
"Cursus tronc commun"
#: sith/settings.py:27
5
sith/settings_sample.py:27
5
#: sith/settings.py:27
6
sith/settings_sample.py:27
6
msgid
"Branch cursus"
msgstr
"Cursus branche"
#: sith/settings.py:28
3
sith/settings_sample.py:28
3
#: sith/settings.py:28
4
sith/settings_sample.py:28
4
msgid
"President"
msgstr
"Président"
#: sith/settings.py:28
4
sith/settings_sample.py:28
4
#: sith/settings.py:28
5
sith/settings_sample.py:28
5
msgid
"Vice-President"
msgstr
"Vice-Président"
#: sith/settings.py:28
5
sith/settings_sample.py:28
5
#: sith/settings.py:28
6
sith/settings_sample.py:28
6
msgid
"Treasurer"
msgstr
"Trésorier"
#: sith/settings.py:28
6
sith/settings_sample.py:28
6
#: sith/settings.py:28
7
sith/settings_sample.py:28
7
msgid
"Communication supervisor"
msgstr
"Responsable com"
#: sith/settings.py:28
7
sith/settings_sample.py:28
7
#: sith/settings.py:28
8
sith/settings_sample.py:28
8
msgid
"Secretary"
msgstr
"Secrétaire"