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 --- 97suifangqa/templates/sciblog/blog_detail.html | 245 ++++++++++++++ .../templates/sciblog/blog_detail_abstract.html | 35 ++ .../templates/sciblog/blog_detail_comment.html | 15 + .../templates/sciblog/blog_detail_follow.html | 39 +++ .../templates/sciblog/blog_detail_knowledge.html | 15 + .../templates/sciblog/blog_detail_refrences.html | 25 ++ .../sciblog/blog_detail_results-detail.html | 49 +++ .../templates/sciblog/blog_detail_results.html | 45 +++ .../templates/sciblog/blog_detail_source.html | 30 ++ .../templates/sciblog/blog_detail_test.html | 356 +++++++++++++++++++++ 97suifangqa/templates/sciblog/blog_list.html | 113 +++++++ .../templates/sciblog/blog_search_form.html | 5 + 97suifangqa/templates/sciblog/index.html | 23 ++ 97suifangqa/templates/sciblog/nav-ribbon.html | 15 + 14 files changed, 1010 insertions(+) create mode 100644 97suifangqa/templates/sciblog/blog_detail.html create mode 100644 97suifangqa/templates/sciblog/blog_detail_abstract.html create mode 100644 97suifangqa/templates/sciblog/blog_detail_comment.html create mode 100644 97suifangqa/templates/sciblog/blog_detail_follow.html create mode 100644 97suifangqa/templates/sciblog/blog_detail_knowledge.html create mode 100644 97suifangqa/templates/sciblog/blog_detail_refrences.html create mode 100644 97suifangqa/templates/sciblog/blog_detail_results-detail.html create mode 100644 97suifangqa/templates/sciblog/blog_detail_results.html create mode 100644 97suifangqa/templates/sciblog/blog_detail_source.html create mode 100644 97suifangqa/templates/sciblog/blog_detail_test.html create mode 100644 97suifangqa/templates/sciblog/blog_list.html create mode 100644 97suifangqa/templates/sciblog/blog_search_form.html create mode 100644 97suifangqa/templates/sciblog/index.html create mode 100644 97suifangqa/templates/sciblog/nav-ribbon.html (limited to '97suifangqa/templates/sciblog') diff --git a/97suifangqa/templates/sciblog/blog_detail.html b/97suifangqa/templates/sciblog/blog_detail.html new file mode 100644 index 0000000..d9e53c9 --- /dev/null +++ b/97suifangqa/templates/sciblog/blog_detail.html @@ -0,0 +1,245 @@ +{% extends "base.html" %} +{% load staticfiles %} +{% block bodyclasses %}{{ block.super }} two-sidebars blog blog-details{% endblock %} +{% block othercss %} + +{% endblock %} +{% block sidebar_first %} + +{% endblock %} +{% block sidebar_second %} + +{% endblock %} +{% block before_content %} +
+
+
+ +

{{ blog.subhead }}

+

{% block sectionname %}临床策略{% endblock %}

+ + {% block navigation %} + + {% endblock %} + +
+
+{% endblock %} +{% block body %} + +
+ {% autoescape off %} + {% block block_pieces %} + {% endblock %} + {% endautoescape %} + {% block explanations %} +
+
+

+
+
+
+
+ {% endblock %} +
+
+
+
+
+ +
+

+
+
+ {% if user.is_authenticated %} + + {% else %} + + {% endif %} +
+ + +
+ +
+

需要登陆才能够收藏文章。但这将离开此页面,确定离开?

+
+ +   + +
+
+
+

需要登陆才能让我们知道您没有看懂此文。但这将离开此页面,确定离开?

+
+ +   + +
+
+ + +{% endblock %} +{% block scripts %} +{{ block.super }} + + + +{% endblock %} diff --git a/97suifangqa/templates/sciblog/blog_detail_abstract.html b/97suifangqa/templates/sciblog/blog_detail_abstract.html new file mode 100644 index 0000000..03a00f3 --- /dev/null +++ b/97suifangqa/templates/sciblog/blog_detail_abstract.html @@ -0,0 +1,35 @@ +{% extends "sciblog/blog_detail.html" %} + +{% block sectionname %} +文章简读 +{% endblock %} + +{% block navigation %} + +{% endblock %} + +{% block block_pieces %} + +

治疗手段

+

{{ blog.method }}

+ +

研究目标

+

{{ blog.aim }}

+ +

结果简述

+

{{ blog.abstract_result }}

+ +

副作用

+

{{ blog.abstractAE }}

+ +

本文结论

+

{{ blog.conclusion}}

+{% endblock %} diff --git a/97suifangqa/templates/sciblog/blog_detail_comment.html b/97suifangqa/templates/sciblog/blog_detail_comment.html new file mode 100644 index 0000000..53dc07c --- /dev/null +++ b/97suifangqa/templates/sciblog/blog_detail_comment.html @@ -0,0 +1,15 @@ +{% extends "sciblog/blog_detail.html" %} + +{% block sectionname %} +学者科学评论 +{% endblock %} + +{% block navigation %} +{% endblock %} + +{% block block_pieces %} +{% for piece in blog.konwledge_piece.comments %} +

{{ piece.title }}

+

{{ piece.content }}

+{% endfor %} +{% endblock %} 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 %} diff --git a/97suifangqa/templates/sciblog/blog_detail_knowledge.html b/97suifangqa/templates/sciblog/blog_detail_knowledge.html new file mode 100644 index 0000000..6ab749d --- /dev/null +++ b/97suifangqa/templates/sciblog/blog_detail_knowledge.html @@ -0,0 +1,15 @@ +{% extends "sciblog/blog_detail.html" %} + +{% block sectionname %} +科普扫盲 +{% endblock %} + +{% block navigation %} +{% endblock %} + +{% block block_pieces %} +{% for piece in blog.konwledge_piece.knowledges %} +

{{ piece.title }}

+

{{ piece.content }}

+{% endfor %} +{% endblock %} diff --git a/97suifangqa/templates/sciblog/blog_detail_refrences.html b/97suifangqa/templates/sciblog/blog_detail_refrences.html new file mode 100644 index 0000000..a60935d --- /dev/null +++ b/97suifangqa/templates/sciblog/blog_detail_refrences.html @@ -0,0 +1,25 @@ +{% extends "sciblog/blog_detail.html" %} + +{% block sectionname %} +参考信息 +{% endblock %} + +{% block navigation %} + +{% endblock %} + +{% block block_pieces %} + +

检测方法罗列

+

{{ blog.detectionAssay }}

+ +

参考文献

+{% for ref in blog.references.all %} +{{ ref.description }} +{% endfor %} +{% endblock %} diff --git a/97suifangqa/templates/sciblog/blog_detail_results-detail.html b/97suifangqa/templates/sciblog/blog_detail_results-detail.html new file mode 100644 index 0000000..3e6ed25 --- /dev/null +++ b/97suifangqa/templates/sciblog/blog_detail_results-detail.html @@ -0,0 +1,49 @@ +{% extends "sciblog/blog_detail.html" %} +{% block bodyclasses %}{{ block.super }} blog-results blog-results-detail{% endblock %} +{% block sectionname %} +病友治疗结果 +{% endblock %} + +{% block navigation %} +{% endblock %} + +{% block cards_abstract %} +
+
+

{{ result.abstract }}

+
+
+{% endblock %} + +{% load group_list %} +{% block block_pieces %} +
+
+
+
+
+

相关指标 

+

{{ result.shorttitle }} 

+
+ {{ result.card_content }} +
+
+
+
+
+
+ {% for indicator in result.indicators.all %} +
{{ indicator.name }}
+ {% endfor %} +
+
+
+
+
+
+

{{ result.abstract }}

+
+
+
+{{ result.content }} +{% endblock %} diff --git a/97suifangqa/templates/sciblog/blog_detail_results.html b/97suifangqa/templates/sciblog/blog_detail_results.html new file mode 100644 index 0000000..1427a01 --- /dev/null +++ b/97suifangqa/templates/sciblog/blog_detail_results.html @@ -0,0 +1,45 @@ +{% extends "sciblog/blog_detail.html" %} +{% block bodyclasses %}{{ block.super }} blog-results{% endblock %} +{% block sectionname %} +病友治疗结果 +{% endblock %} + +{% block navigation %} +{% endblock %} + +{% load group_list %} +{% block block_pieces %} +{% for chunk in blog.results.all|chunks:3 %} +
+ {% for result in chunk %} +
+
+
+
+

相关指标 

+

{{ result.shorttitle }} 

+
+ {{ result.card_content }} +
+
+
+
+
+
+ {% for indicator in result.indicators.all %} +
{{ indicator.name }}
+ {% endfor %} +
+
+
+
+ {{ result.abstract }} +
+
+
+ +{% endfor %} +
+
+{% endfor %} +{% endblock %} diff --git a/97suifangqa/templates/sciblog/blog_detail_source.html b/97suifangqa/templates/sciblog/blog_detail_source.html new file mode 100644 index 0000000..83be5f1 --- /dev/null +++ b/97suifangqa/templates/sciblog/blog_detail_source.html @@ -0,0 +1,30 @@ +{% extends "sciblog/blog_detail.html" %} + +{% block sectionname %} +文章来源 +{% endblock %} + +{% block navigation %} +{% endblock %} + +{% block block_pieces %} +

原文献标题

+ +

{{ blog.entitle }}

+

{{ blog.title }}

+

发表国际期刊

+

{{ blog.journal }}

+

期刊出版日期

+

{{ blog.publish_date}}

+

期刊影响因子

+

{{ blog.ifvalue }}

+ +

研究学者

+

{{ blog.authors }}

+

学者机构

+

{% for h in blog.hospital.all %} +{{ h.name }}({{ h.city.nation.name }}) +{% endfor %} +等等

+{% endblock %} diff --git a/97suifangqa/templates/sciblog/blog_detail_test.html b/97suifangqa/templates/sciblog/blog_detail_test.html new file mode 100644 index 0000000..b6823a9 --- /dev/null +++ b/97suifangqa/templates/sciblog/blog_detail_test.html @@ -0,0 +1,356 @@ +{% extends "base.html" %} +{% load staticfiles %} +{% block bodyclasses %}{{ block.super }} two-sidebars blog blog-details{% endblock %} +{% block othercss %} + + +{% endblock %} +{% block oldcss %}{% endblock %} +{% block sidebar_first %} + +{% endblock %} +{% block sidebar_second %} + +{% endblock %} +{% block before_content %} +
+
+

{{ blog.subhead }}

+

{% block sectionname %}临床策略{% endblock %}

+ + {% block navigation %} + + {% endblock %} + +
+
+{% endblock %} +{% block body %} + +
+ {% block block_pieces %} + +

治疗手段

+

副标题

+

+ 24周随访期结束以后,谷丙转氨酶(ALT)的复常率(恢复正常值以内的几率)或者乙肝病毒(HBV) NA水平降低到20,000拷贝/mL的几率在接受含有聚乙二醇干扰素alfa-2a( 下文此类干扰素都简为“扰素”,如有说到普通干扰素会特别指出)的治疗组人群中会更高(比起那些仅用拉米夫定的患者)。 +

+

很多字很多字很多字很多字很多字很多字很多字很多字很多字很多字很多字很多字

+

+ 在结束治疗24周后,病毒水平降到400拷贝/mL是很多人追求的治疗终点,在含有干扰素的治疗组人群中大概有20%左右获得了这样病毒学应答,仅用拉米夫定的患者这个数字只有7%。 +

+

+ 在结束治疗24周后,病毒水平降到400拷贝/mL是很多人追求的治疗终点,在含有干扰素的治疗组人群中大概有20%左右获得了这样病毒学应答,仅用拉米夫定的患者这个数字只有7%。 +

+
+

+ 表面抗原(HBsAg)的清除,只有12个人发生(都在含有干扰素的治疗组人群中,占比3.4%),仅用拉米夫定的治疗组中没有人获得HBsAg清除。 +

+
+ + +

治疗手段

+

副标题

+

+ 24周随访期结束以后,谷丙转氨酶(ALT)的复常率(恢复正常值以内的几率)或者乙肝病毒(HBV) NA水平降低到20,000拷贝/mL的几率在接受含有聚乙二醇干扰素alfa-2a( 下文此类干扰素都简为“扰素”,如有说到普通干扰素会特别指出)的治疗组人群中会更高(比起那些仅用拉米夫定的患者)。 +

+

很多字很多字很多字很多字很多字很多字很多字很多字很多字很多字很多字很多字

+

+ 在结束治疗24周后,病毒水平降到400拷贝/mL是很多人追求的治疗终点,在含有干扰素的治疗组人群中大概有20%左右获得了这样病毒学应答,仅用拉米夫定的患者这个数字只有7%。 +

+
+ + + +
+

+ 在结束治疗24周后,病毒水平降到400拷贝/mL是很多人追求的治疗终点,在含有干扰素的治疗组人群中大概有20%左右获得了这样病毒学应答,仅用拉米夫定的患者这个数字只有7%。 +

+
+

+ 表面抗原(HBsAg)的清除,只有12个人发生(都在含有干扰素的治疗组人群中,占比3.4%),仅用拉米夫定的治疗组中没有人获得HBsAg清除。 +

+
+
+
+

乙肝病毒

+

+ 在我们的研究中就接受含有乙二醇干扰素治疗的患者中,有40%的人乙肝病毒(HBV)DNA在治疗结束后24周时,下降到20,000拷贝/mL以下。在我们的研究中就接受含有乙二醇干扰素治疗的患者中,有40%的人乙肝病毒(HBV)DNA在治疗结束后24周时,下降到20,000拷贝/mL以下。 +

+

+ 在我们的研究中就接受含有乙二醇干扰素治疗的患者中,有40%的人乙肝病毒(HBV)DNA在治疗结束后24周时,下降到20,000拷贝/mL以下。 +

+

+ 在我们的研究中就接受含有乙二醇干扰素治疗的患者中,有40%的人乙肝病毒(HBV)DNA在治疗结束后24周时,下降到20,000拷贝/mL以下。 +

+

+ David E. Boundy (October 1991). "A taxonomy of programmers". +

+
+
+

应答

+

+ 在我们的研究中就接受含有乙二醇干扰素治疗的患者中,有40%的人乙肝病毒(HBV)DNA在治疗结束后24周时,下降到20,000拷贝/mL以下。在我们的研究中就接受含有乙二醇干扰素治疗的患者中,有40%的人乙肝病毒(HBV)DNA在治疗结束后24周时,下降到20,000拷贝/mL以下。 +

+

+ 在我们的研究中就接受含有乙二醇干扰素治疗的患者中,有40%的人乙肝病毒(HBV)DNA在治疗结束后24周时,下降到20,000拷贝/mL以下。 +

+

+ 在我们的研究中就接受含有乙二醇干扰素治疗的患者中,有40%的人乙肝病毒(HBV)DNA在治疗结束后24周时,下降到20,000拷贝/mL以下。 +

+

+ David E. Boundy (October 1991). "A taxonomy of programmers". +

+
+
+

谷丙转氨酶

+

+ 在我们的研究中就接受含有乙二醇干扰素治疗的患者中,有40%的人乙肝病毒(HBV)DNA在治疗结束后24周时,下降到20,000拷贝/mL以下。在我们的研究中就接受含有乙二醇干扰素治疗的患者中,有40%的人乙肝病毒(HBV)DNA在治疗结束后24周时,下降到20,000拷贝/mL以下。 +

+

+ 在我们的研究中就接受含有乙二醇干扰素治疗的患者中,有40%的人乙肝病毒(HBV)DNA在治疗结束后24周时,下降到20,000拷贝/mL以下。 +

+

+ 在我们的研究中就接受含有乙二醇干扰素治疗的患者中,有40%的人乙肝病毒(HBV)DNA在治疗结束后24周时,下降到20,000拷贝/mL以下。 +

+

+ David E. Boundy (October 1991). "A taxonomy of programmers". +

+
+
+
+
+
+
+ +
+
+ +
+ + +
+
+
+
+
+

ALT 谷丙转氨酶

+

谁的组织学应答好?

+
+ 治疗结束随访24周以后
+ ALT恢复正常
+ ALT没有恢复正常 +
+
+
+
+
+
+
ALT 谷丙转氨酶
+
HBeAg e抗原
+
...
+
+
+
+
+
+
+
+
+
+

ALT 谷丙转氨酶

+

谁的组织学应答好?

+
+ 治疗结束随访24周以后
+ ALT恢复正常
+ ALT没有恢复正常 +
+
+
+
+
+
+
ALT 谷丙转氨酶
+
HBeAg e抗原
+
...
+
+
+
+
+
+ +
+
+
+
+

ALT 谷丙转氨酶

+
谁的组织学应答好?
+
+ 治疗结束随访24周以后
+ ALT恢复正常
+ ALT没有恢复正常 +
+
+
+
+
+
+
ALT 谷丙转氨酶
+
HBeAg e抗原
+
...
+
+
+
+
+
+ {% endblock %} + +
+ + + +{% endblock %} +{% block scripts %} +{{ block.super }} + +{% endblock %} diff --git a/97suifangqa/templates/sciblog/blog_list.html b/97suifangqa/templates/sciblog/blog_list.html new file mode 100644 index 0000000..7e8b7b2 --- /dev/null +++ b/97suifangqa/templates/sciblog/blog_list.html @@ -0,0 +1,113 @@ +{% extends "picture-base.html" %} +{% block bodyclasses %}{{ block.super }} blog blog-list{% endblock %} +{% load staticfiles %} +{% block othercss %} + +{% endblock %} +{% block sidebar_first_content %} + {% include "sciblog/nav-ribbon.html" %} +
+
+ {% include "sciblog/blog_search_form.html" %} +
+
+
+
+ +
+

搜索历史

+
    + {% for search in search_history %} +
  • {{ search }}
  • + {% endfor%} +
+
+ +
+
+{% endblock %} +{% block body %} +
+ {% include "login-menu.inc.html" %} + +
+
+

专业术语

+ {% for noun in ppnouns %} + +

医学文章

+ {% if has_blogs %} +
+ {% for blog in blogs %} +
+
{{ blog.subhead }}
+
    + +
  • 杂志:{{ blog.journal }}
  • +
  • 作者:{{ blog.communication_author }}
  • +
+
+
+ {{ blog.conclusion|safe }} +
+
+ {% endfor %} +
+ {% else %} +
+ +
没有搜索到{% if tab == 'list'%}文章{% else %}收藏{% endif %}
+
+ {% endif %} +
+ +{% endblock %} diff --git a/97suifangqa/templates/sciblog/blog_search_form.html b/97suifangqa/templates/sciblog/blog_search_form.html new file mode 100644 index 0000000..e2869e9 --- /dev/null +++ b/97suifangqa/templates/sciblog/blog_search_form.html @@ -0,0 +1,5 @@ +
+ + +
+ diff --git a/97suifangqa/templates/sciblog/index.html b/97suifangqa/templates/sciblog/index.html new file mode 100644 index 0000000..86769c2 --- /dev/null +++ b/97suifangqa/templates/sciblog/index.html @@ -0,0 +1,23 @@ +{% extends "base.html" %} +{% load staticfiles %} +{% block bodyclasses %}{{ block.super }} blog blog-index{% endblock %} +{% block othercss %} + +{% endblock %} +{% block body %} +
+ {% include "login-menu.inc.html" %} +
+ {% include "sciblog/blog_search_form.html" %} +
+ + + +{% endblock %} +{% block after_content %} + +{% endblock %} \ No newline at end of file diff --git a/97suifangqa/templates/sciblog/nav-ribbon.html b/97suifangqa/templates/sciblog/nav-ribbon.html new file mode 100644 index 0000000..16b2bc1 --- /dev/null +++ b/97suifangqa/templates/sciblog/nav-ribbon.html @@ -0,0 +1,15 @@ + \ No newline at end of file -- cgit v1.2.2