{% extends 'base_app.html' %} {% load crispy_forms_tags %} {% load friendshiptags %} {% block title %} HSAS - Dependents {% endblock %} {% block content %} Manage Dependents {% if all_dependents %} {% if is_dependent %} Master {% else %} All Dependents {% endif %} {% for dependent in all_dependents %} Username Edit {{ dependent }} Delete {% if is_dependent %} {% else %} Add New Dependent {% endif %} {% endfor %} {% else %} You have no dependents. Click below to add a new one. Add Dependent {% endif %} Requests {% if requests %} {% for request in requests %} Username Accept Decline {{ request.from_user }} Accept Decline {% endfor %} {% else %} You have no requests at this moment. {% endif %} {% endblock %}
You have no dependents. Click below to add a new one.
You have no requests at this moment.