{% extends 'base.html' %} {% block title %}Create Branch{% endblock title %} {% block page_content %} {% include 'messages.html' %}
Add New Branch
{% csrf_token %} {{ form.as_p }}
Store Branches
{% if branches|length > 0 %} {% for branch in branches %} {% endfor %}
NameCodeLocationEmailPhoneCreated
{{ branch.name }} {{ branch.branch_code }} {{ branch.location }} {{ branch.email }} {{ branch.phone_contact }} {{ branch.created|date:'d-m-Y' }}
{% else %}
No branches have been added yet
{% endif %}
{% endblock page_content %}