{% extends 'myapp/base.html' %} {% load static %} {% block msg %} {% if messages %} {% for message in messages %}
{{message}}
{% endfor %} {% endif %} {% endblock msg %} {% block side %}

Profile

{{full_name}}
{% for group in groups %}

{{group.name}}

{% endfor %}
{% endblock side %} {% block content %}

Dashboard Page

Add Post

Show Post Information

{% if posts %} {% for post in posts %} {% endfor %}
ID Title Description Action
{{post.id}} {{post.title}} {{post.desc}} Edit {% if perms.myapp.delete_post %}
{% csrf_token %}
{% endif %}
{% else %}

No Records

{% endif %}
{% endblock content %}