{% extends 'base.html' %} {% block link %} {% load static %} {% endblock %} {% block title %}Admin Panel{% endblock %} {% block content %} {% if user.username is not '' %}

Edit Users

{% for user in users %} {% endfor %}
User ID Username Password Status Last login Edit
{{user.id}} {{user.username}} ********** {% if user.status == 0 %}Collaborator{% elif user.status == 1 %}Admin{% endif %} {{user.last_login}} {% if user.status == 0 %} {% endif %}
{% else %} Your Need To login {% endif %} {% endblock %} {% block script %} {% comment %} {% endcomment %} {% endblock %}