blob: 48e3ef20cd0c067b56467a1963437f254860b0fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{% include 'partials/head' %}
{% include 'partials/errors' %}
<nav>
<a href="../..">Back</a>
</nav>
<section class="resource main">
<h2>EDIT {{ resource.type }} '{{ resource.id }}'</h2>
<form action="." method="POST">
<input type="hidden" name="_method" value="PUT">
{% include 'partials/inputs' %}
<label> </label><button type="submit">Save</button>
<div class="clear"></div>
</form>
<form action="." method="POST">
<input type="hidden" name="_method" value="DELETE">
<button type="submit">Delete</button>
</form>
</section>
{% include 'partials/tail' %}
|