diff options
Diffstat (limited to 'workshop_app/templates')
3 files changed, 12 insertions, 3 deletions
diff --git a/workshop_app/templates/workshop_app/my_workshops.html b/workshop_app/templates/workshop_app/my_workshops.html index 740e28f..d652502 100644 --- a/workshop_app/templates/workshop_app/my_workshops.html +++ b/workshop_app/templates/workshop_app/my_workshops.html @@ -81,7 +81,11 @@ <!-- Pending View --> <div class="container"> - <h3 align="center"><strong><u>My Requests</u></strong></h3> + {% if request.user.profile.position == 'instructor' %} + <h3 align="center"><strong><u>Requests for Me</u></strong></h3> + {% else %} + <h3 align="center"><strong><u>My Requests</u></strong></h3> + {% endif %} <table class="table table-striped"> <thead> <tr> @@ -171,7 +175,11 @@ <!-- Proposed View --> <div class="container"> - <h3 align="center"><strong><u>Proposed Workshops</u></strong></h3> + {% if request.user.profile.position == 'instructor' %} + <h3 align="center"><strong><u>Workshops Proposed By Coordinators</u></strong></h3> + {% else %} + <h3 align="center"><strong><u>Workshops Proposed By Me</u></strong></h3> + {% endif %} <table class="table table-striped"> <thead> <tr> diff --git a/workshop_app/templates/workshop_app/registration/register.html b/workshop_app/templates/workshop_app/registration/register.html index 6804ad0..abca610 100644 --- a/workshop_app/templates/workshop_app/registration/register.html +++ b/workshop_app/templates/workshop_app/registration/register.html @@ -49,5 +49,6 @@ <!-- <div class="alert alert-info"> <strong>Info!</strong> Instructors, please wait for our admin approval, if your instructor account is not activated in 7 days, please mail us at workshops[at]fossee[dot]in </div> --> + <br> </div> {% endblock %} diff --git a/workshop_app/templates/workshop_app/workshop_stats.html b/workshop_app/templates/workshop_app/workshop_stats.html index d923c92..ba597dc 100644 --- a/workshop_app/templates/workshop_app/workshop_stats.html +++ b/workshop_app/templates/workshop_app/workshop_stats.html @@ -359,7 +359,7 @@ domain: 'IN', displayMode: 'regions', resolution: 'provinces', - colorAxis: {colors: ['orange']}, + colorAxis: {colors: ['lightyellow', 'orange']}, legend: {position: 'top'}, }; |