{% extends 'LayoutMain.html' %} {% load static %} {% block title %}Dashboard - My Django Project{% endblock %} {% block content %}

User

User List
Add new
Show entries
Search:
{% for profile in profiles %} {% empty %} {% endfor %}
Sl.no Usergroup Name Status Online status Edit Delete
{{ forloop.counter }} {{ profile.usergroup }} {{ profile.name }} Active {% if profile.user == request.user %} Online {% else %} Offline {% endif %} {% if profile.user and profile.user.id %} {% else %} Invalid User {% endif %} {% if profile.user and profile.user.id %} {% else %} No user assigned {% endif %}
No users found.
Showing 1 to {{ profiles|length }} of {{ profiles|length }} entries
{% endblock %}