diff --git a/atlas/models.py b/atlas/models.py index 85f512a6..b17a5511 100644 --- a/atlas/models.py +++ b/atlas/models.py @@ -692,6 +692,10 @@ class CaseCollection(ExamOrCollectionGenericBase): "REP", _("Report"), ) + VIVA = ( + "VIV", + _("Viva"), + ) collection_type = models.CharField( max_length=3, diff --git a/atlas/templates/atlas/collection_viva.html b/atlas/templates/atlas/collection_viva.html new file mode 100644 index 00000000..7a52fcae --- /dev/null +++ b/atlas/templates/atlas/collection_viva.html @@ -0,0 +1,45 @@ +{% extends 'atlas/exams.html' %} + +{% block content %} +

Cases

+
    + {% for case in cases %} +
  1. Case {{forloop.counter}}: {{case.title}}   + + +
  2. + + {% endfor %} +
+ +