diff options
author | Alvin Li <liweitianux@gmail.com> | 2013-08-13 14:13:24 +0800 |
---|---|---|
committer | Alvin Li <liweitianux@gmail.com> | 2013-08-13 14:13:24 +0800 |
commit | 9636d4a6767f49384d5c386bc3f1142c88b90613 (patch) | |
tree | 3a70f6d9e4be1791d36c87cc7cbfd1d5aa2b39dd /97suifangqa/templates/sciblog/blog_detail_follow.html | |
parent | 9383d9a8a5988d071766c3d08a5c946e9c5b02ae (diff) | |
download | 97dev-9636d4a6767f49384d5c386bc3f1142c88b90613.tar.bz2 |
cloned from 'bitbucket', 2013/08/13
Diffstat (limited to '97suifangqa/templates/sciblog/blog_detail_follow.html')
-rw-r--r-- | 97suifangqa/templates/sciblog/blog_detail_follow.html | 39 |
1 files changed, 39 insertions, 0 deletions
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 %} +<nav role="navigation" class="section-nav"> + <ul class="links inline"> + <li><a href="#follow_medicine" class="active">用药与随访历史</a></li> + <li><a href="#endpoints">判别指标</a></li> + <li><a href="#guideline">治疗策略</a></li> + </ul> +</nav> +{% endblock %} + +{% block block_pieces %} +<a href="" id="follow_medicine"></a> +<h3>用药与随访历史</h3> +<p>{{ blog.treatment_content }}</p> +<a href="" id="endpoints"></a> +<h3>判别疗效的指标</h3> +<h4>主要</h4> +{% for end in blog.endpoints.all %} + {% if end.type == 1 %} + {{ end.content }} + {% endif %} +{% endfor %} +<h4>次要</h4> +{% for end in blog.endpoints.all %} + {% if end.type == 2 %} + {{ end.content }} + {% endif %} +{% endfor %} +<div></div> +<a href="" id="guideline"></a> +<h3>治疗策略</h3> +{{ blog.guidline.content }} +{% endblock %} |