{% extends "base.html" %} {% load static %} {% block title %}Edit Service Request{% endblock %} {% block content %}
Edit Request Details
{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{{ form.service_date }} {% if form.service_date.errors %}
{{ form.service_date.errors }}
{% endif %}
{{ form.service_time }} {% if form.service_time.errors %}
{{ form.service_time.errors }}
{% endif %}
{{ form.contact_name }} {% if form.contact_name.errors %}
{{ form.contact_name.errors }}
{% endif %}
{{ form.contact_mobile }} {% if form.contact_mobile.errors %}
{{ form.contact_mobile.errors }}
{% endif %}
{{ form.status }} {% if form.status.errors %}
{{ form.status.errors }}
{% endif %}
{{ form.total_price }} {% if form.total_price.errors %}
{{ form.total_price.errors }}
{% endif %}
{{ form.notes }} {% if form.notes.errors %}
{{ form.notes.errors }}
{% endif %}
Cancel
{% endblock %}