engelsystem/templates/admin_import_check.html

106 lines
2.6 KiB
HTML
Raw Normal View History

2011-07-11 20:40:27 +02:00
<form action="%link%&step=import" method="post">
<fieldset>
<h3>Rooms to create</h3>
<table>
<thead>
<tr>
<th>
Name
</th>
</tr>
</thead>
<tbody>
2011-07-11 21:58:06 +02:00
%rooms_new%
2011-07-11 20:40:27 +02:00
</tbody>
</table>
<h3>Rooms to delete</h3>
<table>
<thead>
<tr>
<th>
Name
</th>
</tr>
</thead>
<tbody>
2011-07-11 21:58:06 +02:00
%rooms_deleted%
</tbody>
</table>
<h3>Shifts to create</h3>
<table>
<thead>
<tr>
<th>
Day
</th>
<th>
Start
</th>
<th>
End
</th>
2011-07-13 14:29:40 +02:00
<th>
Name
</th>
2011-07-11 21:58:06 +02:00
<th>
Room
</th>
</tr>
</thead>
<tbody>
%events_new%
2011-07-11 20:40:27 +02:00
</tbody>
</table>
2011-07-11 22:41:58 +02:00
<h3>Shifts to update</h3>
<table>
<thead>
<tr>
<th>
Day
</th>
<th>
Start
</th>
<th>
End
</th>
2011-07-13 14:29:40 +02:00
<th>
Name
</th>
2011-07-11 22:41:58 +02:00
<th>
Room
</th>
</tr>
</thead>
<tbody>
%events_updated%
</tbody>
</table>
<h3>Shifts to delete</h3>
<table>
<thead>
<tr>
<th>
Day
</th>
<th>
Start
</th>
<th>
End
</th>
2011-07-13 14:29:40 +02:00
<th>
Name
</th>
2011-07-11 22:41:58 +02:00
<th>
Room
</th>
</tr>
</thead>
<tbody>
%events_deleted%
</tbody>
</table>
2011-07-11 20:40:27 +02:00
<input type="submit" name="submit" value="Submit" />
</fieldset>
</form>