aboutsummaryrefslogtreecommitdiffstats
path: root/97suifangqa/apps/indicator/templates/show_record.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/apps/indicator/templates/show_record.html
parent9383d9a8a5988d071766c3d08a5c946e9c5b02ae (diff)
download97dev-9636d4a6767f49384d5c386bc3f1142c88b90613.tar.bz2
cloned from 'bitbucket', 2013/08/13
Diffstat (limited to '97suifangqa/apps/indicator/templates/show_record.html')
-rw-r--r--97suifangqa/apps/indicator/templates/show_record.html52
1 files changed, 52 insertions, 0 deletions
diff --git a/97suifangqa/apps/indicator/templates/show_record.html b/97suifangqa/apps/indicator/templates/show_record.html
new file mode 100644
index 0000000..49c7918
--- /dev/null
+++ b/97suifangqa/apps/indicator/templates/show_record.html
@@ -0,0 +1,52 @@
+<html>
+<head>
+ <title>IndicatorRecord Details (id={{ object.id }})</title>
+</head>
+
+<body>
+ <h1>IndicatorRecord Details (id={{ object.id }})</h1>
+
+ <table>
+ <tr>
+ <td>indicator_name:</td>
+ <td>{{ object.indicator.name }}</td>
+ </tr>
+ <tr>
+ <td>user_username:</td>
+ <td>{{ object.user.username }}</td>
+ </tr>
+ <tr>
+ <td>created_at:</td>
+ <td>{{ object.created_at }}</td>
+ </tr>
+ <tr>
+ <td>updated_at:</td>
+ <td>{{ object.updated_at }}</td>
+ </tr>
+ <tr>
+ <td>date:</td>
+ <td>{{ object.date }}</td>
+ </tr>
+ <tr>
+ <td>unit_name:</td>
+ <td>{{ object.unit.name }}</td>
+ </tr>
+ <tr>
+ <td>value:</td>
+ <td>{{ object.value }}</td>
+ </tr>
+ <tr>
+ <td>val_max:</td>
+ <td>{{ object.val_max }}</td>
+ </tr>
+ <tr>
+ <td>val_min:</td>
+ <td>{{ object.val_min }}</td>
+ </tr>
+ <tr>
+ <td>notes:</td>
+ <td>{{ object.notes }}</td>
+ </tr>
+ </table>
+</body>
+</html>