BioTorrents.de’s version of Gazelle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

navigation.twig 944B

123456789101112131415161718192021
  1. {% from 'macro/form.twig' import checked %}
  2. <table cellpadding="6" cellspacing="1" border="0" width="100%" class="layout border user_options" id="navigation_settings">
  3. <tr class="colhead_dark">
  4. <td colspan="2">
  5. <strong>Navigation Settings</strong>
  6. </td>
  7. </tr>
  8. <tr>
  9. <td style="vertical-align: top;" class="label">
  10. <strong>Navigation elements</strong>
  11. </td>
  12. <td>Select the navigation elements you wish to display at the right of the header.<br />
  13. {% for n in nav_items %}
  14. <div style="padding: 2pt 0;">
  15. <input style="padding: 2px 3px;" type="checkbox" id="n_{{ n.id }}" name="n_{{ n.id }}"{{ checked(n.mandatory or n.id in nav_items_user) }}{% if n.mandatory %} disabled="disabled"{% endif %} />
  16. <label style="font-size: 1.2em;" for="n_{{ n.id }}">{{ n.title }}</label>
  17. </div>
  18. {% endfor %}
  19. </td>
  20. </tr>
  21. </table>