{% extends 'base.html' %} {% block title %}Branches{% endblock title %} {% block page_content %} {% include 'messages.html' %}
{% if branches|length > 0 %} {% for branch in branches %} {% endfor %}
#NameCodeLocationPhoneEmailCreated
{{ branch.num }}. {{ branch.name }} {{ branch.branch_code }} {{ branch.location }} {{ branch.phone_contact }} {{ branch.email }} {{ branch.created|date:'d-m-Y' }}
{% else %}
No branches have been added yet
{% endif %}
{% endblock page_content %}