aboutsummaryrefslogtreecommitdiffstats
path: root/97suifangqa/templates/sciblog/blog_detail_follow.html
blob: a5cdad6c31bacf00800cbfda0967e0c9c717a741 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{% extends "sciblog/blog_detail.html" %}

{% block sectionname %}
<span style="font-weight:normal;">随访与用药</span>
{% 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>
<br><div class="panbiezhibiao"><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>

{% if blog.endpoint_content %}
<h4>注意</h4>
{{ blog.endpoint_content }}
{% else %}
<br>
{% endif %}
<br><br>
<a href="" id="guideline"></a>



<h3>治疗策略</h3>
{% if blog.guidline %}
{{ blog.guidline.content }}
{% else %}
暂无详细资料
{% endif%}
{% endblock %}