aboutsummaryrefslogblamecommitdiff
path: root/cgi/templates/manage/lockboard.html
blob: 49559f671c7632960c7f604cd003644ca29509e3 (plain) (tree)
1
2
3
4
5
6
7
8
9




                                                 



                                 

                              


                                                                                                                                              





                                             
<?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') ?>