From a83b3fb4136a5f823a6ef390ff6b1fa3de75a875 Mon Sep 17 00:00:00 2001
From: Julian Leucker <leuckerj@gmail.com>
Date: Sun, 20 Mar 2022 14:40:47 +0100
Subject: [PATCH] Add field `count_as_missed_lesson` to ExcuseTypes

---
 .../0016_add_not_counted_excuse_types.py       | 18 ++++++++++++++++++
 aleksis/apps/alsijil/models.py                 |  7 +++++++
 2 files changed, 25 insertions(+)
 create mode 100644 aleksis/apps/alsijil/migrations/0016_add_not_counted_excuse_types.py

diff --git a/aleksis/apps/alsijil/migrations/0016_add_not_counted_excuse_types.py b/aleksis/apps/alsijil/migrations/0016_add_not_counted_excuse_types.py
new file mode 100644
index 000000000..48b38b7c9
--- /dev/null
+++ b/aleksis/apps/alsijil/migrations/0016_add_not_counted_excuse_types.py
@@ -0,0 +1,18 @@
+# Generated by Django 3.2.12 on 2022-03-20 10:12
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('alsijil', '0015_fix_unique_personal_note'),
+    ]
+
+    operations = [
+        migrations.AddField(
+            model_name='excusetype',
+            name='count_as_missed_lesson',
+            field=models.BooleanField(default=True, help_text="If checked, this excuse type will be counted as missed lesson. If not checked, it won't show up in the absence report.", verbose_name='Count as missed lesson'),
+        ),
+    ]
diff --git a/aleksis/apps/alsijil/models.py b/aleksis/apps/alsijil/models.py
index 1805831a1..6f64875b5 100644
--- a/aleksis/apps/alsijil/models.py
+++ b/aleksis/apps/alsijil/models.py
@@ -50,6 +50,13 @@ class ExcuseType(ExtensibleModel):
     short_name = models.CharField(max_length=255, unique=True, verbose_name=_("Short name"))
     name = models.CharField(max_length=255, unique=True, verbose_name=_("Name"))
 
+    count_as_missed_lesson = models.BooleanField(
+        default=True,
+        verbose_name=_("Count as missed lesson"),
+        help_text=_("If checked, this excuse type will be counted as missed lesson. If not checked, it won't show up "
+                    "in the absence report."),
+    )
+
     def __str__(self):
         return f"{self.name} ({self.short_name})"
 
-- 
GitLab