From 9636d4a6767f49384d5c386bc3f1142c88b90613 Mon Sep 17 00:00:00 2001 From: Alvin Li Date: Tue, 13 Aug 2013 14:13:24 +0800 Subject: cloned from 'bitbucket', 2013/08/13 --- .../templates/sciblog/blog_detail_follow.html | 39 ++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 97suifangqa/templates/sciblog/blog_detail_follow.html (limited to '97suifangqa/templates/sciblog/blog_detail_follow.html') diff --git a/97suifangqa/templates/sciblog/blog_detail_follow.html b/97suifangqa/templates/sciblog/blog_detail_follow.html new file mode 100644 index 0000000..3635f9b --- /dev/null +++ b/97suifangqa/templates/sciblog/blog_detail_follow.html @@ -0,0 +1,39 @@ +{% extends "sciblog/blog_detail.html" %} + +{% block sectionname %} +随访与用药 +{% endblock %} + +{% block navigation %} + +{% endblock %} + +{% block block_pieces %} + +

用药与随访历史

+

{{ blog.treatment_content }}

+ +

判别疗效的指标

+

主要

+{% for end in blog.endpoints.all %} + {% if end.type == 1 %} + {{ end.content }} + {% endif %} +{% endfor %} +

次要

+{% for end in blog.endpoints.all %} + {% if end.type == 2 %} + {{ end.content }} + {% endif %} +{% endfor %} +
+ +

治疗策略

+{{ blog.guidline.content }} +{% endblock %} -- cgit v1.2.2