author | Nishanth Amuluru <nishanth@fossee.in> |
Tue, 11 Jan 2011 16:51:07 +0530 | |
changeset 144 | daca865314e7 |
parent 138 | 5a94c774473c |
permissions | -rw-r--r-- |
134
563fe356947d
created browse textbooks page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
1 |
{% extends 'base.html' %} |
563fe356947d
created browse textbooks page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
2 |
{% block content %} |
563fe356947d
created browse textbooks page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
3 |
{% if comp_textbooks %} |
563fe356947d
created browse textbooks page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
4 |
Textbooks that were completed recently<ul> |
563fe356947d
created browse textbooks page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
5 |
{% for textbook in comp_textbooks %} |
563fe356947d
created browse textbooks page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
6 |
<li><a href="/task/textbook/view/tid={{ textbook.uniq_key }}">{{ textbook.name }}</a></li> |
563fe356947d
created browse textbooks page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
7 |
{% endfor %} |
563fe356947d
created browse textbooks page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
8 |
</ul> |
563fe356947d
created browse textbooks page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
9 |
<br /> |
563fe356947d
created browse textbooks page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
10 |
{% endif %} |
563fe356947d
created browse textbooks page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
11 |
|
563fe356947d
created browse textbooks page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
12 |
{% if open_textbooks %} |
138
5a94c774473c
browse tasks works fine now
Nishanth Amuluru <nishanth@fossee.in>
parents:
134
diff
changeset
|
13 |
Textbooks that are open for contribution<ul> |
5a94c774473c
browse tasks works fine now
Nishanth Amuluru <nishanth@fossee.in>
parents:
134
diff
changeset
|
14 |
{% for textbook in open_textbooks %} |
134
563fe356947d
created browse textbooks page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
15 |
<li><a href="/task/textbook/view/tid={{ textbook.uniq_key }}">{{ textbook.name }}</a></li> |
563fe356947d
created browse textbooks page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
16 |
{% endfor %} |
563fe356947d
created browse textbooks page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
17 |
</ul> |
563fe356947d
created browse textbooks page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
18 |
<br /> |
563fe356947d
created browse textbooks page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
19 |
{% endif %} |
563fe356947d
created browse textbooks page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
20 |
|
563fe356947d
created browse textbooks page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
21 |
{% if unpub_textbooks %} |
138
5a94c774473c
browse tasks works fine now
Nishanth Amuluru <nishanth@fossee.in>
parents:
134
diff
changeset
|
22 |
Textbooks that need approval<ul> |
134
563fe356947d
created browse textbooks page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
23 |
{% for textbook in unpub_textbooks %} |
563fe356947d
created browse textbooks page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
24 |
<li><a href="/task/textbook/view/tid={{ textbook.uniq_key }}">{{ textbook.name }}</a></li> |
563fe356947d
created browse textbooks page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
25 |
{% endfor %} |
563fe356947d
created browse textbooks page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
26 |
</ul> |
563fe356947d
created browse textbooks page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
27 |
<br /> |
563fe356947d
created browse textbooks page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
28 |
{% endif %} |
563fe356947d
created browse textbooks page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
29 |
{% endblock %} |