diff options
author | CruiseDevice | 2020-09-17 13:32:12 +0530 |
---|---|---|
committer | ankitjavalkar | 2020-10-08 10:42:51 +0530 |
commit | 31e258a9d2e253691fd548d47aaab3cfee756322 (patch) | |
tree | 496d815a2df967d515d09030108324d7a7d5a998 /yaksh/templates | |
parent | 5e49406420207123afec88a1ca7138e7a58c2acc (diff) | |
download | online_test-31e258a9d2e253691fd548d47aaab3cfee756322.tar.gz online_test-31e258a9d2e253691fd548d47aaab3cfee756322.tar.bz2 online_test-31e258a9d2e253691fd548d47aaab3cfee756322.zip |
Fix tests and minor changes
Diffstat (limited to 'yaksh/templates')
-rw-r--r-- | yaksh/templates/yaksh/course_forum.html | 42 | ||||
-rw-r--r-- | yaksh/templates/yaksh/lessons_forum.html | 12 |
2 files changed, 29 insertions, 25 deletions
diff --git a/yaksh/templates/yaksh/course_forum.html b/yaksh/templates/yaksh/course_forum.html index a9bda6f..0346121 100644 --- a/yaksh/templates/yaksh/course_forum.html +++ b/yaksh/templates/yaksh/course_forum.html @@ -55,28 +55,28 @@ </div> </div> <br> - <div class="row justify-content-center"> - <div class="col-md-6"> - <form class="my-2 my-lg-0" action="" method="GET"> - <div class="input-group"> - <input type="search" placeholder="Search Post" name="search_post" class="form-control"> - <span class="input-group-append"> - <button class="btn btn-outline-info"> - <i class="fa fa-search"></i> Search - </button> - </span> - </div> - </form> - </div> - <div class="col-md-4"> - <a class="btn btn-outline-danger" href="{% url 'yaksh:course_forum' course.id %}"> - <i class="fa fa-times"></i> Clear Search - </a> - </div> - </div> - <br> {% with objects as posts %} {% if posts %} + <div class="row justify-content-center"> + <div class="col-md-6"> + <form class="my-2 my-lg-0" action="" method="GET"> + <div class="input-group"> + <input type="search" placeholder="Search Post" name="search_post" class="form-control"> + <span class="input-group-append"> + <button class="btn btn-outline-info"> + <i class="fa fa-search"></i> Search + </button> + </span> + </div> + </form> + </div> + <div class="col-md-4"> + <a class="btn btn-outline-danger" href="{% url 'yaksh:course_forum' course.id %}"> + <i class="fa fa-times"></i> Clear Search + </a> + </div> + </div> + <br> {% include "yaksh/paginator.html" %} <br> <table id="posts_table" class="tablesorter table"> @@ -120,7 +120,7 @@ <br> {% include "yaksh/paginator.html" %} {% else %} - No discussion posts are there yet. Create one to start discussing. + <center>No discussion posts are there yet. Create one to start discussing.</center> {% endif %} {% endwith %} </div> diff --git a/yaksh/templates/yaksh/lessons_forum.html b/yaksh/templates/yaksh/lessons_forum.html index a4fd23b..ee65074 100644 --- a/yaksh/templates/yaksh/lessons_forum.html +++ b/yaksh/templates/yaksh/lessons_forum.html @@ -7,10 +7,6 @@ <div id="wrapper" class="d-flex"> {% include "yaksh/sidebar.html" %} <div class="container" id="page-content-wrapper"> - <div> - <h2><center>{{course.name}}</center></h2> - <center>Discussion Forum</center> - </div> <div class="d-flex p-2 bd-highlight"> <div class="col-md-4"> {% if moderator %} @@ -25,6 +21,10 @@ </div> </div> {% if posts %} + <div> + <h2><center>{{course.name}}</center></h2> + <center>Discussion Forum</center> + </div> <table class="table"> <thead class="thread-inverse"> <tr> @@ -63,6 +63,10 @@ {% endfor %} </tbody> </table> + {% else %} + <div> + <center>No Lesson posts here. They will appear when someone comments on video lessons.</center> + </div> {% endif %} </div> </div> |