{% extends 'Base.html' %} {% load static %} {% block head %}{% endblock %} {% block title %}Shiraz Center{% endblock %} {% block body %}

Add new services


{% if messages %}
{% for message in messages %} {% endfor %}
{% endif %}
{% csrf_token %}
{{ form.name.label_tag }} {{ form.name }} {% if form.name.errors %}
{{ form.name.errors }}
{% endif %}
{{ form.unit_price.label_tag }} {{ form.unit_price }} {% if form.unit_price.errors %}
{{ form.unit_price.errors }}
{% endif %}
{% endblock %}