Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
NoteKfet 2020
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
4
Issues
4
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
BDE
NoteKfet 2020
Commits
b63aaf41
Verified
Commit
b63aaf41
authored
Jul 16, 2019
by
erdnaxe
🎇
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move display image to Note (2)
parent
9a35b8f9
Pipeline
#1348
failed with stage
in 2 minutes and 19 seconds
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
31 additions
and
41 deletions
+31
-41
.gitignore
.gitignore
+3
-0
member/locale/fr/LC_MESSAGES/django.po
member/locale/fr/LC_MESSAGES/django.po
+27
-36
member/models.py
member/models.py
+0
-5
tox.ini
tox.ini
+1
-0
No files found.
.gitignore
View file @
b63aaf41
...
...
@@ -36,3 +36,6 @@ settings_local.py
env/
venv/
db.sqlite3
# Ignore migrations during first phase dev
migrations/
member/locale/fr/LC_MESSAGES/django.po
View file @
b63aaf41
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-07-16 1
3:46
+0200\n"
"POT-Creation-Date: 2019-07-16 1
5:21
+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
...
...
@@ -23,103 +18,99 @@ msgid "member"
msgstr "adhérent"
#: models.py:24
msgid "profile picture"
msgstr "image de profil"
#: models.py:29
msgid "phone number"
msgstr "numéro de téléphone"
#: models.py:3
6
#: models.py:3
0
msgid "section"
msgstr "section"
#: models.py:3
7
#: models.py:3
1
msgid "e.g. \"1A0\", \"9A♥\", \"SAPHIRE\""
msgstr "e.g. \"1A0\", \"9A♥\", \"SAPHIRE\""
#: models.py:
41
#: models.py:
37
msgid "address"
msgstr "adresse"
#: models.py:4
7 models.py:61
#: models.py:4
3
msgid "paid"
msgstr "payé"
#: models.py:
52 models.py:53
#: models.py:
48 models.py:49
msgid "user profile"
msgstr "profil utilisateur"
#: models.py:65
#: models.py:57 models.py:102
msgid "name"
msgstr "nom"
#: models.py:62
msgid "email"
msgstr "courriel"
#: models.py:
70
#: models.py:
67
msgid "membership fee"
msgstr "cotisation pour adhérer"
#: models.py:7
4
#: models.py:7
1
msgid "membership duration"
msgstr "durée de l'adhésion"
#: models.py:7
5
#: models.py:7
2
msgid "The longest time a membership can last (NULL = infinite)."
msgstr "La durée maximale d'une adhésion (NULL = infinie)."
#: models.py:
80
#: models.py:
77
msgid "membership start"
msgstr "début de l'adhésion"
#: models.py:
81
#: models.py:
78
msgid "How long after January 1st the members can renew their membership."
msgstr ""
#: models.py:8
6
#: models.py:8
3
msgid "membership end"
msgstr "fin de l'adhésion"
#: models.py:8
7
#: models.py:8
4
msgid ""
"How long the membership can last after January 1st of the next year after "
"members can renew their membership."
msgstr ""
#: models.py:9
3
#: models.py:9
0
msgid "club"
msgstr "club"
#: models.py:9
4
#: models.py:9
1
msgid "clubs"
msgstr "clubs"
#: models.py:102
msgid "name"
msgstr "nom"
#: models.py:107
#: models.py:108
msgid "role"
msgstr "rôle"
#: models.py:10
8
#: models.py:10
9
msgid "roles"
msgstr "rôles"
#: models.py:12
5
#: models.py:12
6
msgid "membership starts on"
msgstr "l'adhésion commence le"
#: models.py:12
8
#: models.py:12
9
msgid "membership ends on"
msgstr "l'adhésion finie le"
#: models.py:13
2
#: models.py:13
3
msgid "fee"
msgstr "cotisation"
#: models.py:13
6
#: models.py:13
7
msgid "membership"
msgstr "adhésion"
#: models.py:13
7
#: models.py:13
8
msgid "memberships"
msgstr "adhésions"
member/models.py
View file @
b63aaf41
...
...
@@ -20,11 +20,6 @@ class Profile(models.Model):
settings
.
AUTH_USER_MODEL
,
on_delete
=
models
.
CASCADE
,
)
profile_picture
=
models
.
ImageField
(
verbose_name
=
_
(
'profile picture'
),
max_length
=
255
,
blank
=
True
,
)
phone_number
=
models
.
CharField
(
verbose_name
=
_
(
'phone number'
),
max_length
=
50
,
...
...
tox.ini
View file @
b63aaf41
...
...
@@ -8,6 +8,7 @@ deps =
-r{toxinidir}/requirements.txt
coverage
commands
=
./manage.py
makemigrations
coverage
run
./manage.py
test
{posargs}
coverage
report
-m
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment