{% 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
| 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 %}