diff options
-rw-r--r-- | yaksh/templates/yaksh/addteacher.html | 7 | ||||
-rw-r--r-- | yaksh/templates/yaksh/course_detail.html | 11 |
2 files changed, 4 insertions, 14 deletions
diff --git a/yaksh/templates/yaksh/addteacher.html b/yaksh/templates/yaksh/addteacher.html index 86f5806..478da77 100644 --- a/yaksh/templates/yaksh/addteacher.html +++ b/yaksh/templates/yaksh/addteacher.html @@ -5,11 +5,6 @@ {% block css %} <link rel="stylesheet" media="all" type="text/css" href="{{ URL_ROOT }}/static/yaksh/css/course.css" /> -<style> -table, th, td{ - border: 1px solid black; -} -</style> {% endblock %} {% block content %} @@ -32,7 +27,7 @@ table, th, td{ {% else %} <center><b><u>Search Results</u></b></center><br> <center><b>Search results does not include teachers already added</b></center><br> - <table> + <table class="table table-striped"> <th></th> <th>Username</th> <th>First Name</th> diff --git a/yaksh/templates/yaksh/course_detail.html b/yaksh/templates/yaksh/course_detail.html index 0cccb60..94b19a9 100644 --- a/yaksh/templates/yaksh/course_detail.html +++ b/yaksh/templates/yaksh/course_detail.html @@ -7,11 +7,6 @@ {% block script %} <script language="JavaScript" type="text/javascript" src="{{ URL_ROOT }}/static/yaksh/js/course.js"></script> {% endblock %} -{% block css %} -<style> -table, th, td { border: 1px solid black;} -</style> -{% endblock %} {% block content %} <br/> <br> @@ -33,7 +28,7 @@ table, th, td { border: 1px solid black;} {% if course.get_requests %} <input type="checkbox" class="checkall"/> <font size="2">Select all</font> <div id="enroll-all"> -<table> +<table class="table table-striped"> <th></th> <th>Full Name</th> <th>Email</th> @@ -67,7 +62,7 @@ table, th, td { border: 1px solid black;} {% if course.get_enrolled %} <input type="checkbox" class="reject"/> <font size="2">Select all</font> <div id="reject"> -<table> +<table class="table table-striped"> <th></th> <th>Full Name</th> <th>Email</th> @@ -101,7 +96,7 @@ table, th, td { border: 1px solid black;} {% if course.get_rejected %} <input type="checkbox" class="enroll"/> <font size="2">Select all</font> <div id="enroll"> -<table> +<table class="table table-striped"> <th></th> <th>Full Name</th> <th>Email</th> |