aboutsummaryrefslogtreecommitdiffstats
path: root/97suifangqa/templates/sciblog/blog_detail_source.html
diff options
context:
space:
mode:
authorAlvin Li <liweitianux@gmail.com>2013-08-13 14:13:24 +0800
committerAlvin Li <liweitianux@gmail.com>2013-08-13 14:13:24 +0800
commit9636d4a6767f49384d5c386bc3f1142c88b90613 (patch)
tree3a70f6d9e4be1791d36c87cc7cbfd1d5aa2b39dd /97suifangqa/templates/sciblog/blog_detail_source.html
parent9383d9a8a5988d071766c3d08a5c946e9c5b02ae (diff)
download97dev-9636d4a6767f49384d5c386bc3f1142c88b90613.tar.bz2
cloned from 'bitbucket', 2013/08/13
Diffstat (limited to '97suifangqa/templates/sciblog/blog_detail_source.html')
-rw-r--r--97suifangqa/templates/sciblog/blog_detail_source.html30
1 files changed, 30 insertions, 0 deletions
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 %}
+<h4>原文献标题</h4>
+<!--下文所有p就是正文标准样式-->
+<p>{{ blog.entitle }}</p>
+<p>{{ blog.title }}</p>
+<h4>发表国际期刊</h4>
+<p>{{ blog.journal }}</p>
+<h4>期刊出版日期</h4>
+<p>{{ blog.publish_date}}<p>
+<h4>期刊影响因子</h4>
+<p>{{ blog.ifvalue }}</p>
+<!--h4>本文难度系数</h4>
+<p>{{ blog.level }}</p-->
+<h4>研究学者</h4>
+<p>{{ blog.authors }}</p>
+<h4>学者机构</h4>
+<p>{% for h in blog.hospital.all %}
+{{ h.name }}({{ h.city.nation.name }})
+{% endfor %}
+等等</p>
+{% endblock %}