diff --git a/orga/templates/orga/orga_main.html b/orga/templates/orga/orga_main.html
index 1cc0381..a8c73fe 100644
--- a/orga/templates/orga/orga_main.html
+++ b/orga/templates/orga/orga_main.html
@@ -77,6 +77,9 @@ function connectorDefaults(connector) {
connector.targetDecorator.shape = 'None';
connector.type = 'Orthogonal';
connector.style.strokeColor = 'gray';
+
+ console.log(connector);
+
return connector;
}
diff --git a/users/templates/users/dashboard.html b/users/templates/users/dashboard.html
index f7fba51..6ab7f2f 100644
--- a/users/templates/users/dashboard.html
+++ b/users/templates/users/dashboard.html
@@ -7,50 +7,68 @@
Agentur: {{ request.user.profile.agency.name }}
-
-
-
News
-
-
-
- | Titel |
- Veröffentlicht von |
- Veröffentlicht am |
-
-
- {% for news_single in news %}
-
- | {{news_single.name }} |
- {{ news_single.created_by.first_name }} {{ news_single.created_by.last_name }} |
- {{ news_single.go_online_on|date:"d.m.Y, H:i" }} |
-
- {% endfor %}
-
+
-
Neueste Standards
-
-
-
- | Titel |
- Erstellt am |
- Erstellt von |
- Geändert am |
- Geändert von |
-
-
- {% for standard in standards_of_agency %}
-
- | {{standard.name}} |
- {{standard.created_standard_date|date:"d.m.Y, H:i"}} |
- {{standard.created_standard_by.first_name}} {{standard.created_standard_by.last_name}} |
- {{standard.last_modified_on|date:"d.m.Y, H:i"}} |
- {{standard.last_modified_by.first_name}} {{standard.last_modified_by.last_name}} |
-
- {% endfor %}
-
-
-
-

-
+
+
+
+
News
+
+
+
+ | Titel |
+ Veröffentlicht von |
+ Veröffentlicht am |
+
+
+ {% for news_single in news %}
+
+ | {{news_single.name }} |
+ {{ news_single.created_by.first_name }} {{ news_single.created_by.last_name }} |
+ {{ news_single.go_online_on|date:"d.m.Y, H:i" }} |
+
+ {% endfor %}
+
+
+
+
+
+

+
+
+
+
+
+
Neueste Standards
+
+
+
+ | Titel |
+ Erstellt von |
+ Erstellt am |
+
+
+ {% for standard in standards_of_agency %}
+
+ | {{standard.name}} |
+ {{standard.created_standard_by.first_name}} {{standard.created_standard_by.last_name}} |
+ {{standard.created_standard_date|date:"d.m.Y, H:i"}} |
+
+ {% endfor %}
+
+
+
+
+
-{% endblock content %}
\ No newline at end of file
+{% endblock content %}
+
+
+
+
+ {% for standard in standards_of_agency %}
+ {% if standard.task == task and standard.area == area %}
+
{{standard.name}}
+ {% endif %}
+ {% endfor %}
+
\ No newline at end of file