From 156b10363c5a1049571e6c1d88597309c7ceab49 Mon Sep 17 00:00:00 2001 From: Alvin Li Date: Thu, 15 Aug 2013 16:25:51 +0800 Subject: * updated 'indicator.views' for front pages * use 'render' instead of 'render_to_response' * updated 'indicator/templates/indicator/NewDeleteIndex.html' to show all indicators and followed indicators --- .../templates/indicator/NewDeleteIndex.html | 872 +++++++++++---------- .../apps/indicator/templates/indicator/test.html | 33 + 2 files changed, 498 insertions(+), 407 deletions(-) create mode 100644 97suifangqa/apps/indicator/templates/indicator/test.html (limited to '97suifangqa/apps/indicator/templates') diff --git a/97suifangqa/apps/indicator/templates/indicator/NewDeleteIndex.html b/97suifangqa/apps/indicator/templates/indicator/NewDeleteIndex.html index 29c15d0..8fd3e4c 100644 --- a/97suifangqa/apps/indicator/templates/indicator/NewDeleteIndex.html +++ b/97suifangqa/apps/indicator/templates/indicator/NewDeleteIndex.html @@ -1,5 +1,6 @@ {% extends "base.html" %} {% load static from staticfiles %} +{% load dict_get %} {% block title %} 指标状态 | 随访工具 | 97 随访 @@ -31,416 +32,473 @@ {% block page %} -
-
-
添加或删除关注指标
- +
+
+
+ + + + + + {% for cat in categories %} + + {% endfor %} +
+
+
+
+ + +
+
所有指标
+
+
A
+
B
+
C
+
D
+
E
+
F
+
G
+
H
+
I
+
J
+
K
+
L
+
M
+
N
+
O
+
P
+
Q
+
R
+
S
+
T
+
U
+
V
+
W
+
X
+
Y
+
Z
+
+
+
+ {# display all indicator by letter index #} + {% for l in letters %} + {% with l_inds=indicators_pdict|dict_get:l %} + {% if l_inds|length >= 1 %} +
+
{{ l|upper }}
+ {% for ind in l_inds %} +
+
{{ ind|dict_get:"name" }}
+
+
+
+
+ {% endfor %} +
+ {% endif %} + {% endwith %} + {% endfor %} + {# end: display all indicator #} + + {% comment %}{# vim: {{{ #} + +
+
A
+
+
乙肝病毒表面抗原
+
两对半
+
+
+
+
+
+
B
+
+
乙肝病毒表面抗原
+
两对半
+
+
+
+
+
+
C
+
+
乙肝病毒表面抗原
+
两对半
+
+
+
+
+
+
D
+
+
乙肝病毒表面抗原
+
两对半
+
+
+
+
+
+
E
+
+
乙肝病毒表面抗原
+
两对半
+
+
+
+
+
+
F
+
+
乙肝病毒表面抗原
+
两对半
+
+
+
+
+
+
G
+
+
乙肝病毒表面抗原
+
两对半
+
+
+
+
+
+
H
+
+
乙肝病毒表面抗原
+
两对半
+
+
+
+
+
+
I
+
+
乙肝病毒表面抗原
+
两对半
+
+
+
+
+
+
J
+
+
乙肝病毒表面抗原
+
两对半
+
+
+
+
+
+
K
+
+
乙肝病毒表面抗原
+
两对半
+
+
+
+
+
+
L
+
+
乙肝病毒表面抗原
+
两对半
+
+
+
+
+
+
M
+
+
乙肝病毒表面抗原
+
两对半
+
+
+
+
+
+
N
+
+
乙肝病毒表面抗原
+
两对半
+
+
+
+
+
+
O
+
+
乙肝病毒表面抗原
+
两对半
+
+
+
+
+
+
P
+
+
乙肝病毒表面抗原
+
两对半
+
+
+
+
+
+
Q
+
+
乙肝病毒表面抗原
+
两对半
+
+
+
+
+
+
R
+
+
乙肝病毒表面抗原
+
两对半
+
+
+
+
+
+
S
+
+
乙肝病毒表面抗原
+
两对半
+
+
+
+
+
+
T
+
+
乙肝病毒表面抗原
+
两对半
+
+
+
+
+
+
U
+
+
乙肝病毒表面抗原
+
两对半
+
+
+
+
+
+
V
+
+
乙肝病毒表面抗原
+
两对半
+
+
+
+
+
+
W
+
+
乙肝病毒表面抗原
+
两对半
+
+
+
+
+
+
X
+
+
乙肝病毒表面抗原
+
两对半
+
+
+
+
+
+
Y
+
+
乙肝病毒表面抗原
+
两对半
+
+
+
+
+
+
Z
+
+
乙肝病毒表面抗原
+
两对半
+
+
+
+
+ + {% endcomment %}{# vim: }}} #} + +
+
+ + + + +
+
+
+
+
已关注指标
+
+
+ {% csrf_token %} + + +
+
+
+
+
+ + {% for fi in followed_indicators %} +
+
{{ fi|dict_get:"name" }}
+
+
+
+ {% endfor %} + + {% comment %}{# vim: {{{ #} +
+
V-谷丙氨酰转氨酶
+
+
+
+
+
总胆红素
+
+
+
+
+
乙肝病毒表面抗原
+
+
+
+
+
乙肝病毒表面抗体
+
+
+
+
+
乙肝病毒e抗体
+
+
+
+
+
乙肝病毒核算定量(PCR)
+
+
+
+
+
乙肝病毒基因型C型
+
+
+
+
+
乙肝病毒型混合型
+
+
+
+ {% endcomment %}{# vim: }}} #} +
+ +
+
+
+
{% endblock page %} {# vim: set ts=2 sw=2 tw=0 fenc=utf-8 ft=htmldjango.html: #} diff --git a/97suifangqa/apps/indicator/templates/indicator/test.html b/97suifangqa/apps/indicator/templates/indicator/test.html new file mode 100644 index 0000000..65340b9 --- /dev/null +++ b/97suifangqa/apps/indicator/templates/indicator/test.html @@ -0,0 +1,33 @@ + +{% load dict_get %} + + + Test + + +

ul 1

+ + +

ul 2

+ + + + + -- cgit v1.2.2