diff --git a/tasks/__pycache__/forms.cpython-38.pyc b/tasks/__pycache__/forms.cpython-38.pyc index bfae0d8..1457d82 100644 Binary files a/tasks/__pycache__/forms.cpython-38.pyc and b/tasks/__pycache__/forms.cpython-38.pyc differ diff --git a/tasks/__pycache__/urls.cpython-38.pyc b/tasks/__pycache__/urls.cpython-38.pyc index fbe82ce..bc61e6e 100644 Binary files a/tasks/__pycache__/urls.cpython-38.pyc and b/tasks/__pycache__/urls.cpython-38.pyc differ diff --git a/tasks/__pycache__/views.cpython-38.pyc b/tasks/__pycache__/views.cpython-38.pyc index 518a912..454878c 100644 Binary files a/tasks/__pycache__/views.cpython-38.pyc and b/tasks/__pycache__/views.cpython-38.pyc differ diff --git a/tasks/forms.py b/tasks/forms.py index 7095ce8..a5f96f0 100644 --- a/tasks/forms.py +++ b/tasks/forms.py @@ -10,10 +10,9 @@ class TasksAddTaskForm(forms.ModelForm): labels = { "name" : "Aufgabenname", "area" : "Übergeordneter Bereich", - "desc" : "Beschreibung", "visible": "Im Organigramm sichtbar" } - fields = ['name', 'area', 'desc', 'visible'] + fields = ['name', 'area', 'visible'] def __init__(self, *args, **kwargs): user = kwargs.pop('user') diff --git a/tasks/templates/tasks/tasks_add.html b/tasks/templates/tasks/tasks_add.html index 3ad92f6..4e50986 100644 --- a/tasks/templates/tasks/tasks_add.html +++ b/tasks/templates/tasks/tasks_add.html @@ -2,15 +2,15 @@ {% load crispy_forms_tags %} {% block content %}
Alle unter dieser Aufgabe erstellten Standards werden gelöscht!
diff --git a/tasks/templates/tasks/tasks_update.html b/tasks/templates/tasks/tasks_update.html index 849dadd..7bae5ca 100644 --- a/tasks/templates/tasks/tasks_update.html +++ b/tasks/templates/tasks/tasks_update.html @@ -38,7 +38,7 @@