profile.html 726 B

12345678910111213141516171819
  1. {% extends 'users/base.html' %}
  2. {% load helpers %}
  3. {% block title %}User Profile{% endblock %}
  4. {% block usercontent %}
  5. <small class="text-muted">User login</small>
  6. <h5>{{ request.user.username }}</h5>
  7. <small class="text-muted">Full name</small>
  8. <h5>{{ request.user.first_name }} {{ request.user.last_name }}</h5>
  9. <small class="text-muted">Email</small>
  10. <h5>{{ request.user.email }}</h5>
  11. <small class="text-muted">Registered</small>
  12. <h5>{{ request.user.date_joined }}</h5>
  13. <small class="text-muted">Groups</small>
  14. <h5>{{ request.user.groups.all|join:', ' }}</h5>
  15. <small class="text-muted">Admin access</small>
  16. <h5>{{ request.user.is_staff|yesno|capfirst }}</h5>
  17. {% endblock %}