diff options
author | Choom | 2023-01-26 01:48:46 -0300 |
---|---|---|
committer | Choom | 2023-01-26 01:54:30 -0300 |
commit | 198becec5eb7c6e7827700afb4cc9b6cb1c1b2a8 (patch) | |
tree | 9da42f4862cde372002b9fc3512062f30cfaa8c2 /cgi/templates/manage/lockboard.html | |
parent | e396b01348126c1b8d5c3a93cb90bc309046f8e7 (diff) | |
download | weabot-198becec5eb7c6e7827700afb4cc9b6cb1c1b2a8.tar.gz weabot-198becec5eb7c6e7827700afb4cc9b6cb1c1b2a8.tar.xz weabot-198becec5eb7c6e7827700afb4cc9b6cb1c1b2a8.zip |
Agregando lockboard a boards
Diffstat (limited to 'cgi/templates/manage/lockboard.html')
-rw-r--r-- | cgi/templates/manage/lockboard.html | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/cgi/templates/manage/lockboard.html b/cgi/templates/manage/lockboard.html deleted file mode 100644 index 49559f6..0000000 --- a/cgi/templates/manage/lockboard.html +++ /dev/null @@ -1,20 +0,0 @@ -<?py include('templates/base_top.html') ?> -<?py include('templates/manage/menu.html') ?> -<center> -<div class="replymode">Cerrar o abrir board</div> -<table class="managertable"> - <tr> - <th colspan="2">Sección</th> - <th>Acción</th> - </tr> - <?py for board in boards: ?> - <tr> - <td>#{board['dir']}</td> - <td>#{board['name']}</td> - <td style="text-align:center;">[<a href="#{cgi_url}manage/boardlock/#{board['dir']}">#{'Abrir' if board['locked'] else 'Cerrar'}</a>]</td> - </tr> - <?py #endfor ?> -</table> -</center> -<hr /> -<?py include('templates/base_bottom.html') ?> |