diff options
author | Sam Wenham <sam@wenhams.co.uk> | 2019-03-10 11:05:57 +0000 |
---|---|---|
committer | Sam Wenham <sam@wenhams.co.uk> | 2019-03-10 11:05:57 +0000 |
commit | 121f0a6aac7e68520d2f33e15bc2aa2a41cf6ea8 (patch) | |
tree | ffb16669c777069a0fb4e63b345a83a495b06ead /templates/controlPanel.html | |
parent | 8932bdc4661df3804c8d8f99be69403c0bd5ec7e (diff) | |
download | troggle-121f0a6aac7e68520d2f33e15bc2aa2a41cf6ea8.tar.gz troggle-121f0a6aac7e68520d2f33e15bc2aa2a41cf6ea8.tar.bz2 troggle-121f0a6aac7e68520d2f33e15bc2aa2a41cf6ea8.zip |
Remove the news section as it never gets updated
Fix logbook entry so the edit link works
Tidy the control panel page
Diffstat (limited to 'templates/controlPanel.html')
-rw-r--r-- | templates/controlPanel.html | 52 |
1 files changed, 36 insertions, 16 deletions
diff --git a/templates/controlPanel.html b/templates/controlPanel.html index 327af13..41c9409 100644 --- a/templates/controlPanel.html +++ b/templates/controlPanel.html @@ -23,25 +23,45 @@ <form name="reset" method="post" action=""> -<h3>Wipe:</h3> - -<table> -<tr><td>Wipe entire database and recreate tables: </td><td><input type="checkbox" name="reload_db" /></td><td> <input type="submit" id="Import" value="I really want to delete all information in troggle, and accept all responsibility."></td></tr> -</table> + <h3>Wipe:</h3> + <table> + <tr> + <td>Wipe entire database and recreate tables: </td> + <td><input type="checkbox" name="reload_db" /></td> + <td> + <input type="submit" id="Import" value="I really want to delete all information in troggle, and accept all responsibility."> + </td> + </tr> + </table> </form> <h3>Import (non-destructive):</h3> <form name="import" method="post" action=""> -<table> -<tr><td>people from folk.csv using parsers\people.py</td><td><input type="checkbox" name="import_people"/></td></tr> -<tr><td>caves from cavetab2.csv using parsers\cavetab.py</td><td> <input type="checkbox" class="parser" name="import_cavetab"/></td></tr> -<tr><td>logbook entries using parsers\logbooks.py</td><td><input type="checkbox" name="import_logbooks"/></td></tr> -<tr><td>QMs using parsers\QMs.py</td><td><input type="checkbox" name="import_QMs" /></td></tr> -<tr><td>survey scans using parsers\surveys.py</td><td><input type="checkbox" name="import_surveys" /></td></tr> -<tr><td>survex data using parsers\survex.py</td><td><input type="checkbox" name="import_survex" /></td></tr> - -</table> - - + <table> + <tr> + <td>people from folk.csv using parsers\people.py</td> + <td><input type="checkbox" name="import_people"/></td> + </tr> + <tr> + <td>caves from cavetab2.csv using parsers\cavetab.py</td> + <td> <input type="checkbox" class="parser" name="import_cavetab"/></td> + </tr> + <tr> + <td>logbook entries using parsers\logbooks.py</td> + <td><input type="checkbox" name="import_logbooks"/></td> + </tr> + <tr> + <td>QMs using parsers\QMs.py</td> + <td><input type="checkbox" name="import_QMs" /></td> + </tr> + <tr> + <td>survey scans using parsers\surveys.py</td> + <td><input type="checkbox" name="import_surveys" /></td> + </tr> + <tr> + <td>survex data using parsers\survex.py</td> + <td><input type="checkbox" name="import_survex" /></td> + </tr> + </table> <p> <input type="submit" id="Import" value="Import"> |