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_results.html | 45 ++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 97suifangqa/templates/sciblog/blog_detail_results.html (limited to '97suifangqa/templates/sciblog/blog_detail_results.html') 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 %} -- cgit v1.2.2