diff options
author | Kyle McFarland <tfkyle@gmail.com> | 2018-01-31 00:51:07 -0600 |
---|---|---|
committer | Kyle McFarland <tfkyle@gmail.com> | 2018-01-31 00:51:07 -0600 |
commit | 61d1aa04d8d44b17bfe6dace90088669fc6c3df8 (patch) | |
tree | 7ede15c880e4c41a18cded46fe6d03fb2dc4543b /tmpl/tasks.tmpl | |
download | mcoop-master.zip mcoop-master.tar.gz mcoop-master.tar.bz2 |
* 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.tmpl | 29 |
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 %} |