diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/admin_import_check.html | 31 | ||||
-rw-r--r-- | templates/admin_import_import.html | 3 | ||||
-rw-r--r-- | templates/admin_import_input.html | 2 |
3 files changed, 35 insertions, 1 deletions
diff --git a/templates/admin_import_check.html b/templates/admin_import_check.html new file mode 100644 index 00000000..864339fc --- /dev/null +++ b/templates/admin_import_check.html @@ -0,0 +1,31 @@ +<form action="%link%&step=import" method="post"> + <fieldset> + <h3>Rooms to create</h3> + <table> + <thead> + <tr> + <th> + Name + </th> + </tr> + </thead> + <tbody> + %rooms_new% + </tbody> + </table> + <h3>Rooms to delete</h3> + <table> + <thead> + <tr> + <th> + Name + </th> + </tr> + </thead> + <tbody> + %rooms_deleted% + </tbody> + </table> + <input type="submit" name="submit" value="Submit" /> + </fieldset> +</form>
\ No newline at end of file diff --git a/templates/admin_import_import.html b/templates/admin_import_import.html new file mode 100644 index 00000000..4f2905be --- /dev/null +++ b/templates/admin_import_import.html @@ -0,0 +1,3 @@ +<p class="success"> + It's done! +</p> diff --git a/templates/admin_import_input.html b/templates/admin_import_input.html index 19e756fe..89454f8c 100644 --- a/templates/admin_import_input.html +++ b/templates/admin_import_input.html @@ -1,4 +1,4 @@ -<form action="%link%" method="post"> +<form action="%link%&step=check" method="post"> <fieldset> <p> While developing we use a fixed file input. Just hit submit. |