{% extends "layouts/base.html" %} {% block title %} Profile {% endblock title %} {% block stylesheets %}{% endblock stylesheets %} {% block content %}

User Details

{% for customer in users %} {% if customer.username != "admin" %} {% else %} {% endif %} {% endfor %}
Username E-mail Id
{{customer.username}} {{customer.email}}

Add User

{% if registration_successful %} {% endif %} {% if user_exists %} {% endif %}
{% include "includes/footer.html" %} {% endblock content %} {% block javascripts %} {% endblock javascripts %}