Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
thalia
concrexit
Commits
3fe8943d
Commit
3fe8943d
authored
Sep 06, 2017
by
Tom van Bussel
Browse files
Added extra categories for exam answers
parent
a8052126
Changes
4
Hide whitespace changes
Inline
Side-by-side
website/education/locale/nl/LC_MESSAGES/django.mo
View file @
3fe8943d
No preview for this file type
website/education/locale/nl/LC_MESSAGES/django.po
View file @
3fe8943d
...
...
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-0
8-21 18:11
+0200\n"
"PO-Revision-Date: 2017-0
8-21 18:12
+0200\n"
"POT-Creation-Date: 2017-0
9-06 20:42
+0200\n"
"PO-Revision-Date: 2017-0
9-06 20:45
+0200\n"
"Last-Translator: Sébastiaan Versteeg <se_bastiaan@outlook.com>\n"
"Language-Team: \n"
"Language: nl\n"
...
...
@@ -54,7 +54,7 @@ msgstr "EC"
msgid "period"
msgstr "periode"
#: models.py:77 models.py:12
9
models.py:1
77
#: models.py:77 models.py:1
3
2 models.py:1
80
msgid "course"
msgstr "vak"
...
...
@@ -86,52 +86,64 @@ msgstr "Oefententamen"
msgid "Exam Answers"
msgstr "Antwoorden tentamen"
#: models.py:93
#: models.py:89
msgid "Partial Exam Answers"
msgstr "Antwoorden deeltentamen"
#: models.py:90
msgid "Resit Answers"
msgstr "Antwoorden hertentamen"
#: models.py:91
msgid "Practice Exam Answers"
msgstr "Antwoorden oefententamen"
#: models.py:96
msgid "exam type"
msgstr "type tentamen"
#: models.py:
98
#: models.py:
101
msgid "exam name"
msgstr "naam tentamen"
#: models.py:10
4
models.py:16
0
#: models.py:10
7
models.py:16
3
msgid "uploader"
msgstr "uploader"
#: models.py:11
3
models.py:18
2
#: models.py:11
6
models.py:18
5
msgid "accepted"
msgstr "geaccepteerd"
#: models.py:11
8
#: models.py:1
2
1
msgid "exam date"
msgstr "tentamendatum"
#: models.py:12
3
models.py:1
88
#: models.py:12
6
models.py:1
91
msgid "Use the 'View on site' button to download the file for inspection."
msgstr ""
"Gebruik de ‘Toon op site’ knop om het bestand te downloaden voor controle."
#: models.py:1
48
#: models.py:1
51
msgid "exam"
msgstr "tentamen"
#: models.py:1
49
#: models.py:1
52
msgid "exams"
msgstr "tentamens"
#: models.py:15
5
#: models.py:15
8
msgid "summary name"
msgstr "naam samenvatting"
#: models.py:17
2
#: models.py:17
5
msgid "author"
msgstr "auteur"
#: models.py:20
0
#: models.py:20
3
msgid "summary"
msgstr "samenvatting"
#: models.py:20
1
#: models.py:20
4
msgid "summaries"
msgstr "samenvattingen"
...
...
website/education/migrations/0005_auto_20170906_2109.py
0 → 100644
View file @
3fe8943d
# -*- coding: utf-8 -*-
# Generated by Django 1.11 on 2017-09-06 19:09
from
__future__
import
unicode_literals
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'education'
,
'0004_auto_20170227_1406'
),
]
operations
=
[
migrations
.
AlterField
(
model_name
=
'exam'
,
name
=
'type'
,
field
=
models
.
CharField
(
choices
=
[(
'document'
,
'Document'
),
(
'exam'
,
'Exam'
),
(
'partial'
,
'Partial Exam'
),
(
'resit'
,
'Resit'
),
(
'practice'
,
'Practice Exam'
),
(
'exam_answers'
,
'Exam Answers'
),
(
'partial_answers'
,
'Partial Exam Answers'
),
(
'resit_answers'
,
'Resit Answers'
),
(
'practice_answers'
,
'Practice Exam Answers'
)],
max_length
=
40
,
verbose_name
=
'exam type'
),
),
]
website/education/models.py
View file @
3fe8943d
...
...
@@ -85,7 +85,10 @@ class Exam(models.Model, metaclass=ModelTranslateMeta):
(
'partial'
,
_
(
'Partial Exam'
)),
(
'resit'
,
_
(
'Resit'
)),
(
'practice'
,
_
(
'Practice Exam'
)),
(
'answers'
,
_
(
'Exam Answers'
)))
(
'exam_answers'
,
_
(
'Exam Answers'
)),
(
'partial_answers'
,
_
(
'Partial Exam Answers'
)),
(
'resit_answers'
,
_
(
'Resit Answers'
)),
(
'practice_answers'
,
_
(
'Practice Exam Answers'
)))
type
=
models
.
CharField
(
max_length
=
40
,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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