{% extends "users/base.html" %} {% load counter_tag %} {% block content %}

Standards{% if request.user.profile.showtooltips %} {% endif %}  Standard

Sichtbar sind alle veröffentlichten und von {{ user.first_name }} {{ user.last_name}} erstellten Standards.
{% for area in areas %}
Standards aus dem Bereich {{area.name}}

{% for ele in standardcontent %} {% if ele.area == area %} {% for task in ele.tasks %}
{{task.task.name}} ({{task.standards.count}})
{% for s in task.standards %} {% setbool False %} {% for ag in s.visibleby.all %} {% if request.user|has_group:ag.group.name %} {% setbool True %} {% endif %} {% endfor %} {% if s.visibleby.all|length == 0 %} {% setbool True %} {% endif %} {% getbool as groupchecker %} {% if forloop.counter0 < 3 %} {% if groupchecker %}

{{s.name|truncatechars:28}}

{% else %}

 {{s.name|truncatechars:28}}

{% endif %} {% endif %} {% endfor %}
{% endfor %} {% endif %} {% endfor %}
{% endfor %} {% if agencynetworks|length > 0 %}

Agenturverbünde

{% block agnet %} {% include "standards/agencynetwork_content.html" %} {% endblock %}
{% endif %}

Eigene Standards

{% for standard in standards_of_user %} {% endfor %}
Titel Erstellt am Geändert von Geändert am Öffentlichkeitsstatus  
{% if standard.area != None and standard.task != None %} {{standard.name}} {% else %} {% if standard.created_standard_by == request.user or perms.users.standardmanager %} {{standard.name}}  {% else %} {{standard.name}}  {% endif %} {% endif %} {{standard.created_standard_date|date:"d.m.Y, H:i"}} {{standard.last_modified_by.first_name}} {{standard.last_modified_by.last_name}} {{standard.last_modified_on|date:"d.m.Y, H:i"}} {{standard.public|yesno:"Öffentlich,Nicht öffentlich"}}

Unveröffentlichte Standards

{% for standard in unpubstandards_of_user %} {% endfor %}
Titel Erstellt am Geändert von Geändert am Öffentlichkeitsstatus  
{% if standard.area != None and standard.task != None %} {{standard.name}} {% else %} {% if standard.created_standard_by == request.user or perms.users.standardmanager %} {{standard.name}}  {% else %} {{standard.name}}  {% endif %} {% endif %} {{standard.created_standard_date|date:"d.m.Y, H:i"}} {{standard.last_modified_by.first_name}} {{standard.last_modified_by.last_name}} {{standard.last_modified_on|date:"d.m.Y, H:i"}} {{standard.public|yesno:"Öffentlich,Nicht öffentlich"}}
{% endblock content %}