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

Willkommen, {{request.user.first_name}} {{request.user.last_name}}!

Letzter Login: {{ request.user.last_login }}
Agentur: {{ request.user.profile.agency.name }}

News
{% for news_single in news %} {% endfor %}
Titel Veröffentlicht von Veröffentlicht am
{{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" }}
Neueste Standards
{% for standard in standards_of_agency %} {% endfor %}
Titel Erstellt von Erstellt am
{{standard.name}} {{standard.created_standard_by.first_name}} {{standard.created_standard_by.last_name}} {{standard.created_standard_date|date:"d.m.Y, H:i"}}
{% endblock content %}