12 lines
267 B
Twig
12 lines
267 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}New Incident{% endblock %}
|
|
|
|
{% block body %}
|
|
<h1>Create new Incident</h1>
|
|
|
|
{{ form(formNew,{'attr': {'novalidate': 'novalidate'}}) }}
|
|
|
|
<a href="{{ path('incident_index') }}">back to list</a>
|
|
{% endblock %}
|