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
thalia
concrexit
Commits
2031fcbd
Verified
Commit
2031fcbd
authored
Feb 25, 2017
by
Sébastiaan Versteeg
Browse files
Add exam document type for answers
parent
08580021
Changes
4
Show whitespace changes
Inline
Side-by-side
website/education/locale/nl/LC_MESSAGES/django.mo
View file @
2031fcbd
No preview for this file type
website/education/locale/nl/LC_MESSAGES/django.po
View file @
2031fcbd
...
...
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 201
6-11-23 21:49
+0100\n"
"PO-Revision-Date: 201
6-11-23 21
:5
4
+0100\n"
"POT-Creation-Date: 201
7-02-25 19:52
+0100\n"
"PO-Revision-Date: 201
7-02-25 19
:5
3
+0100\n"
"Last-Translator: Sébastiaan Versteeg <se_bastiaan@outlook.com>\n"
"Language-Team: \n"
"Language: nl\n"
...
...
@@ -16,7 +16,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 1.8.
7.
1\n"
"X-Generator: Poedit 1.8.1
2
\n"
#: education/admin.py:30
msgid "Mark exams as accepted"
...
...
@@ -54,7 +54,7 @@ msgstr "EC"
msgid "period"
msgstr "periode"
#: education/models.py:77 education/models.py:12
6
education/models.py:17
4
#: education/models.py:77 education/models.py:12
7
education/models.py:17
5
msgid "course"
msgstr "vak"
...
...
@@ -82,47 +82,51 @@ msgstr "Hertentamen"
msgid "Practice Exam"
msgstr "Oefententamen"
#: education/models.py:92
#: education/models.py:88
msgid "Exam Answers"
msgstr "Antwoorden tentamen"
#: education/models.py:93
msgid "exam type"
msgstr "type tentamen"
#: education/models.py:9
7
#: education/models.py:9
8
msgid "exam name"
msgstr "naam tentamen"
#: education/models.py:10
3
education/models.py:15
7
#: education/models.py:10
4
education/models.py:15
8
msgid "uploader"
msgstr "uploader"
#: education/models.py:11
2
education/models.py:1
79
#: education/models.py:11
3
education/models.py:1
80
msgid "accepted"
msgstr "geaccepteerd"
#: education/models.py:11
7
#: education/models.py:11
8
msgid "exam date"
msgstr "tentamendatum"
#: education/models.py:14
5
#: education/models.py:14
6
msgid "exam"
msgstr "tentamen"
#: education/models.py:14
6
#: education/models.py:14
7
msgid "exams"
msgstr "tentamens"
#: education/models.py:15
2
#: education/models.py:15
3
msgid "summary name"
msgstr "naam samenvatting"
#: education/models.py:1
69
#: education/models.py:1
70
msgid "author"
msgstr "auteur"
#: education/models.py:19
5
#: education/models.py:19
6
msgid "summary"
msgstr "samenvatting"
#: education/models.py:19
6
#: education/models.py:19
7
msgid "summaries"
msgstr "samenvattingen"
...
...
@@ -356,9 +360,3 @@ msgstr ""
#: education/views.py:30
msgid "Summary"
msgstr "Samenvatting"
#~ msgid "Mark exams as unaccepted"
#~ msgstr "Mark tentamens als niet geaccepteerd"
#~ msgid "Mark summaries as unaccepted"
#~ msgstr "Mark samenvattingen als niet geaccepteerd"
website/education/migrations/0003_auto_20170225_1951.py
0 → 100644
View file @
2031fcbd
# -*- coding: utf-8 -*-
# Generated by Django 1.10.3 on 2017-02-25 18:51
from
__future__
import
unicode_literals
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'education'
,
'0002_auto_20161109_2024'
),
]
operations
=
[
migrations
.
AlterField
(
model_name
=
'exam'
,
name
=
'type'
,
field
=
models
.
CharField
(
choices
=
[(
'document'
,
'Document'
),
(
'exam'
,
'Exam'
),
(
'partial'
,
'Partial Exam'
),
(
'resit'
,
'Resit'
),
(
'practice'
,
'Practice Exam'
),
(
'answers'
,
'Exam Answers'
)],
max_length
=
40
,
verbose_name
=
'exam type'
),
),
]
website/education/models.py
View file @
2031fcbd
...
...
@@ -84,7 +84,8 @@ class Exam(models.Model):
(
'exam'
,
_
(
'Exam'
)),
(
'partial'
,
_
(
'Partial Exam'
)),
(
'resit'
,
_
(
'Resit'
)),
(
'practice'
,
_
(
'Practice Exam'
)))
(
'practice'
,
_
(
'Practice Exam'
)),
(
'answers'
,
_
(
'Exam Answers'
)))
type
=
models
.
CharField
(
max_length
=
40
,
...
...
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