service_create.html 208 B

12345678910
  1. {% extends 'base.html' %}
  2. {% block content %}
  3. <h2>Create a Service</h2>
  4. <form method="POST">
  5. {% csrf_token %}
  6. {{ form.as_p }}
  7. <input type="submit">
  8. </form>
  9. {% endblock %}