blob: 8e02c5b71ccd6f6c7c54229e0216d54c2ce908ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
[% SET bodyclass = 'waste' %]
[% INCLUDE header.html %]
[% PROCESS 'waste/govuk/fields.html' %]
[% PROCESS back %]
[% PROCESS errors %]
[% PROCESS title %]
[% IF property %]
<dl class="waste__address">
<dt class="waste__address__title">Address</dt>
<dd class="waste__address__property">[% property.address %]</dd>
</dl>
[% END %]
<form method="post">
[% PROCESS form %]
<input type="hidden" name="token" value="[% csrf_token %]">
<input type="hidden" name="process" value="[% process %]">
<input type="hidden" name="saved_data" value="[% saved_data %]">
</form>
[% INCLUDE footer.html %]
|