Commit 6148f4e2f91718d4928fb793433a576b092a05eb

Authored by Gustavo Bernardo
1 parent 957d96c9

Temporary search template [Issue:#251]

Showing 1 changed file with 26 additions and 0 deletions   Show diff stats
users/templates/users/search.html 0 → 100644
... ... @@ -0,0 +1,26 @@
  1 +<html>
  2 +<h1> Links </h1>
  3 +{% for link in link_list %}
  4 + {{link.name}} </br>
  5 +{% endfor %}
  6 +
  7 +<h1> Polls </h1>
  8 +{% for poll in poll_list %}
  9 + {{poll.name}} </br>
  10 +{% endfor %}
  11 +
  12 +<h1> Exams </h1>
  13 +{% for exam in exam_list %}
  14 + {{exam.name}} </br>
  15 +{% endfor %}
  16 +
  17 +<h1> Forums </h1>
  18 +{% for forum in forum_list %}
  19 + {{forum.name}} </br>
  20 +{% endfor %}
  21 +
  22 +<h1> Files </h1>
  23 +{% for file in file_list %}
  24 + {{file.name}} </br>
  25 +{% endfor %}
  26 +</html>
... ...