summaryrefslogtreecommitdiff
path: root/tmpl/tasks.tmpl
diff options
context:
space:
mode:
authorKyle McFarland <tfkyle@gmail.com>2018-01-31 00:51:07 -0600
committerKyle McFarland <tfkyle@gmail.com>2018-01-31 00:51:07 -0600
commit61d1aa04d8d44b17bfe6dace90088669fc6c3df8 (patch)
tree7ede15c880e4c41a18cded46fe6d03fb2dc4543b /tmpl/tasks.tmpl
downloadmcoop-master.zip
mcoop-master.tar.gz
mcoop-master.tar.bz2
Initial importHEADmaster
* Registration system's almost done * Just part way through implementing tasks So not much done yet, but it's a start.
Diffstat (limited to 'tmpl/tasks.tmpl')
-rw-r--r--tmpl/tasks.tmpl29
1 files changed, 29 insertions, 0 deletions
diff --git a/tmpl/tasks.tmpl b/tmpl/tasks.tmpl
new file mode 100644
index 0000000..070e002
--- /dev/null
+++ b/tmpl/tasks.tmpl
@@ -0,0 +1,29 @@
+{% extends "base.tmpl" %}
+
+{% block title %}Tasks{% endblock %}
+
+{% block head_extra %}
+<script src="js/tasks.js"></script>
+{% endblock %}
+
+{% block page_contents %}
+ <div class="row">
+ <div class="col-12"><h2>Task Search</h2></div>
+ <div class="col-12"><button class="btn btn-secondary" onclick="get_all_tasks()" name="view_all">View All Tasks</button></div>
+ <div class="col-12"><hr style="border: 1px solid rgba(0, 0, 0, 1)"/></div>
+ </div>
+ <div id="table_container" class="hidden_results_table">
+ <table id="results_table" class="table">
+ <thead><tr>
+ <td>ID</td>
+ <td>Title</td>
+ <td>State</td>
+ <td>Admin</td>
+ <td>Available Credits</td>
+ </tr></thead>
+ <tbody id="results_tbody">
+
+ </tbody>
+ </thead>
+ </div>
+{% endblock %}