diff --git a/.gitignore b/.gitignore
index 966ab60..2aeb9a0 100644
--- a/.gitignore
+++ b/.gitignore
@@ -12,6 +12,8 @@ media/ag_default.jpg
digitaleagentur/__pycache__/*
digitaleagentur/sec.py
+__pycache__/*
+
.DS_STORE
.cred
@@ -30,10 +32,14 @@ areas/__pycache__/*
adm/migrations/*
!adm/migrations/__init__.py
adm/__pycache__/*
+adm/templatetags/__pycache__/*
+
+
standards/migrations/*
!standards/migrations/__init__.py
standards/__pycache__/*
+standards/templatetags/__pycache__/*
recoverdir/migrations/*
!recoverdir/migrations/__init__.py
diff --git a/README.md b/README.md
deleted file mode 100644
index a17cbac..0000000
--- a/README.md
+++ /dev/null
@@ -1,7 +0,0 @@
-digitale agentur - README
-
-Quellcode für Prod aktuell
-
-Aktuelle Version für die Prod!
-
-MASTER NEU
\ No newline at end of file
diff --git a/adm/forms.py b/adm/forms.py
index 2f245a7..aeacad6 100644
--- a/adm/forms.py
+++ b/adm/forms.py
@@ -22,12 +22,11 @@ class AdmWorkdayForm(forms.ModelForm):
"start" : "Start",
"end" : "Ende",
"target" : "Zielarbeitszeit",
- "freefield" : "Notiz",
- "delflag" : "Nicht berücksichtigen (delflag)"
+ "freefield" : "Notiz"
}
fields = [
- "start", "end", "target", "freefield", "delflag"
+ "start", "end", "target", "freefield"
]
widgets = {
'start': DatePickerInput(options={"format":'DD.MM.YYYY HH:mm', "locale":'de'}),
diff --git a/adm/templates/adm/adm_base.html b/adm/templates/adm/adm_base.html
index c5a6dc8..00941bd 100644
--- a/adm/templates/adm/adm_base.html
+++ b/adm/templates/adm/adm_base.html
@@ -97,6 +97,16 @@
Agenturen
+ {% if active_link == 'adm-import' %}
+
+
+
+ {% if user|usergperm:"modulesconfig" %}
+
+
Module{% if request.user.profile.showtooltips %} {% endif %}
+ {% block moduls_content %}
+ {% include "dasettings/moduls_content.html" %}
+ {% endblock %}
+
+ {% endif %}
+
Benachrichtigungen{% if request.user.profile.showtooltips %} {% endif %}
@@ -114,6 +135,15 @@
{% endblock %}
{% endif %}
+ {% if user|usergperm:"agencyinfo" %}
+
+
Speicherplatz{% if request.user.profile.showtooltips %} {% endif %}
+
+ {% block quota_content %}
+ {% include "dasettings/quota_content.html" %}
+ {% endblock %}
+
+ {% endif %}
{% if user|usergperm:"agencynetwork" %}
Agenturverbünde{% if request.user.profile.showtooltips %} {% endif %}
@@ -157,22 +187,15 @@
{% include "dasettings/groups_content.html" %}
{% endblock %}
- {% endif %}
- {% if user|usergperm:"modulesconfig" %}
-
-
Module{% if request.user.profile.showtooltips %} {% endif %}
- {% block moduls_content %}
- {% include "dasettings/moduls_content.html" %}
- {% endblock %}
-
{% endif %}
{% endblock content %}
\ No newline at end of file
diff --git a/dasettings/templates/dasettings/user_usprof.html b/dasettings/templates/dasettings/user_usprof.html
index 4468ce6..b162fa3 100644
--- a/dasettings/templates/dasettings/user_usprof.html
+++ b/dasettings/templates/dasettings/user_usprof.html
@@ -61,8 +61,8 @@