summaryrefslogtreecommitdiff
path: root/tpl/list/view.php
diff options
context:
space:
mode:
authorNicolas BERNSTEIN <alexis211@gmail.com>2011-11-20 13:39:47 +0100
committerNicolas BERNSTEIN <alexis211@gmail.com>2011-11-20 13:39:47 +0100
commitd45c7f14891d951f8a6987cc6492073b97e05b5b (patch)
treed6467b1202c27f67fd8e894d25fd4aea0085b559 /tpl/list/view.php
parent4d7e065c2d2ec407b6a7ebfc7569628bac9149d1 (diff)
downloadBits-d45c7f14891d951f8a6987cc6492073b97e05b5b.tar.gz
Bits-d45c7f14891d951f8a6987cc6492073b97e05b5b.zip
Added the bit list study system
Diffstat (limited to 'tpl/list/view.php')
-rw-r--r--tpl/list/view.php29
1 files changed, 29 insertions, 0 deletions
diff --git a/tpl/list/view.php b/tpl/list/view.php
new file mode 100644
index 0000000..8b2c292
--- /dev/null
+++ b/tpl/list/view.php
@@ -0,0 +1,29 @@
+<?php
+
+$title = $list['owner'] . ':' . $list['name'];
+require("tpl/general/top.php");
+
+if ($can_edit) {
+ echo '<div class="small_right"><a href="edit-list-' . $list['id'] . '">edit</a> | ';
+ echo '<a href="addbatch-list-' . $list['id'] . '">add batch</a></div>';
+}
+
+echo $list['comment'];
+
+if ($can_start_study) {
+ echo '<p style="text-align: center; font-size: 1.2em;"><a href="listadd-study-' . $listid . '">&gt;&gt; start studying this list &lt;&lt;</a></p>';
+}
+
+echo '<table><tr><th>Batch name</th>' . ($can_edit ? '<th>actions</th>' : '') . '</tr>';
+foreach ($batches as $batch) {
+ echo '<tr><td>' . $batch['name'] . '</td>';
+ if ($can_edit) {
+ echo '<td><a href="edbatch-list-' . $batch['id'] . '">edit</a> | <a href="rmbatch-list-' . $batch['id'] . '">remove</a></td>';
+ }
+ echo '</tr>';
+}
+echo '</table>';
+
+require("tpl/study/lib_sidebar.php");
+
+require("tpl/general/bottom.php");