diff options
-rw-r--r-- | fossee_manim/templates/fossee_manim/index.html | 2 | ||||
-rw-r--r-- | fossee_manim/templates/fossee_manim/logout.html | 4 | ||||
-rw-r--r-- | fossee_manim/templates/fossee_manim/proposal_status.html | 20 |
3 files changed, 14 insertions, 12 deletions
diff --git a/fossee_manim/templates/fossee_manim/index.html b/fossee_manim/templates/fossee_manim/index.html index 1cfdaab..35d72ae 100644 --- a/fossee_manim/templates/fossee_manim/index.html +++ b/fossee_manim/templates/fossee_manim/index.html @@ -50,7 +50,7 @@ <ul class="navbar-nav ml-md-auto"> <li class="nav-item dropdown"> - <a class="nav-link dropdown-toggle" href="http://example.com" id="navbarDropdownMenuLink" data-toggle="dropdown" style="color:white">Login / Register</a> + <a class="nav-link dropdown-toggle" href="http://example.com" id="navbarDropdownMenuLink" data-toggle="dropdown" style="color:white">Login / Register</a> <div class="dropdown-menu dropdown-menu-right" aria-labelledby="navbarDropdownMenuLink"> <a class="dropdown-item" href="{% url 'login' %}">Login</a> <div class="dropdown-divider"> diff --git a/fossee_manim/templates/fossee_manim/logout.html b/fossee_manim/templates/fossee_manim/logout.html index 5ef3e73..b326547 100644 --- a/fossee_manim/templates/fossee_manim/logout.html +++ b/fossee_manim/templates/fossee_manim/logout.html @@ -6,11 +6,11 @@ {% block content %} - <div class="container" align="center"> + <div class="container jumbotron" align="center" style= "margin-top: 30px;"> <br> <h3>You have logged out successfully.</h3> <h4>If you want to Login again please <a href="{{ URL_ROOT}}/login/">click here</a></h4> <br> </div> - {% endblock %}
\ No newline at end of file + {% endblock %} diff --git a/fossee_manim/templates/fossee_manim/proposal_status.html b/fossee_manim/templates/fossee_manim/proposal_status.html index c53ecc0..ec602ad 100644 --- a/fossee_manim/templates/fossee_manim/proposal_status.html +++ b/fossee_manim/templates/fossee_manim/proposal_status.html @@ -3,11 +3,12 @@ {% block title %} Proposal Status {% endblock %} - {% block content %} - <br> +<div class = "jumbotron" style = "background-color: white; margin-top: 30px;"> <div class="container" align="center"> + {% if request.user.profile.position == 'contributor' %} + <h2> Proposal Status </h2> <table class="table table-hover"> <thead> <tr> @@ -62,7 +63,7 @@ </tbody> {% endfor %} {% endif %} - + </table> </div> @@ -75,7 +76,7 @@ <li class="page-item"> {% if request.user.profile.position == 'contributor' %} {% if anime.has_previous %} - <a class="page-link" tabindex="-1" + <a class="page-link" tabindex="-1" href="?page={{ anime.previous_page_number }}">Prev</a> {% endif %} </li> @@ -87,12 +88,12 @@ <li class="page-item"> {% if anime.has_next %} <a class="page-link" href="?page={{ anime.next_page_number }}"> Next - </a> + </a> {% endif %} {% else %} {% if anime_list.has_previous %} - <a class="page-link" tabindex="-1" + <a class="page-link" tabindex="-1" href="?page={{ anime_list.previous_page_number }}"> Prev </a> {% endif %} </li> @@ -104,7 +105,7 @@ <li class="page-item"> {% if anime_list.has_next %} <a class="page-link" href="?page={{ anime_list.next_page_number }}"> Next - </a> + </a> {% endif %} {% endif %} @@ -113,5 +114,6 @@ </nav> </div> </div> - - {% endblock %}
\ No newline at end of file +</div> + + {% endblock %} |