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.

browse.html 1.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <section class="wiki_search">
  2. <p>Search the wiki for user created tutorials and information.</p>
  3. <form class="search_form" name="wiki" action="wiki.php" method="get">
  4. <input type="hidden" name="action" value="search" />
  5. <input type="hidden" name="nojump" value="1" />
  6. <input type="search" name="search" size="80" />
  7. <input value="Search" type="submit" class="hidden button-primary" />
  8. </form>
  9. <br />
  10. <p>
  11. Additionally, you can manually browse through the articles by their first letter.
  12. </p>
  13. <span>
  14. {% for letter in 'a'..'z' %}
  15. <a href="wiki.php?action=browse&amp;letter={{ letter }}"
  16. >{{ letter|upper }}</a
  17. >&nbsp;&nbsp; {% endfor %}
  18. <a href="wiki.php?action=browse&amp;letter=1">All</a>&nbsp;&nbsp;
  19. </span>
  20. </section>
  21. <section class="wiki_results">
  22. <div class="header">
  23. <h2>{{ title }}</h2>
  24. </div>
  25. <div class="linkbox">
  26. <a href="wiki.php?action=create" class="brackets">Create</a>
  27. </div>
  28. <table width="100%" style="margin-bottom: 10px">
  29. <tr class="colhead">
  30. <td>Article</td>
  31. <td>Last updated on</td>
  32. <td>Last edited by</td>
  33. </tr>
  34. {% for article in articles %}
  35. <tr>
  36. <td>
  37. <a href="wiki.php?action=article&amp;id={{ article.ID }}"
  38. >{{ article.Title }}</a
  39. >
  40. </td>
  41. <td>{{ article.Date }}</td>
  42. <td>{{ article.Author|user_url }}</td>
  43. </tr>
  44. {% endfor %}
  45. </table>
  46. </section>