summaryrefslogtreecommitdiff
path: root/tpl/list/view.php
diff options
context:
space:
mode:
authorroot <root@adnab.me>2014-01-31 16:42:40 +0100
committerroot <root@adnab.me>2014-01-31 16:42:40 +0100
commitb0c23ea84327d48e3a4383fac3e795c2dc0a1215 (patch)
tree625a8f0882815d9442a4ff2ec15a49e669a15ed3 /tpl/list/view.php
parentcee55b766230837c21453f85e76a921cb5b8b89e (diff)
downloadBits-b0c23ea84327d48e3a4383fac3e795c2dc0a1215.tar.gz
Bits-b0c23ea84327d48e3a4383fac3e795c2dc0a1215.zip
Remove all studying apps code.
Diffstat (limited to 'tpl/list/view.php')
-rw-r--r--tpl/list/view.php29
1 files changed, 0 insertions, 29 deletions
diff --git a/tpl/list/view.php b/tpl/list/view.php
deleted file mode 100644
index 8b2c292..0000000
--- a/tpl/list/view.php
+++ /dev/null
@@ -1,29 +0,0 @@
-<?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");