diff options
author | Sashi20 | 2018-09-27 12:32:38 +0530 |
---|---|---|
committer | GitHub | 2018-09-27 12:32:38 +0530 |
commit | 9f1a4acad9154efe03cd3590b73841d2561e5168 (patch) | |
tree | db1a22a92e52a1eabb7253deb2f3010e7b040cf1 /static/website/templates/view-proposals.html | |
parent | ff10b111ec056b9259f74af4fc3ed7cd7ae9d136 (diff) | |
parent | 9b4ad968f1b70f3c111e1e4fce4fce46bd968629 (diff) | |
download | nccps-2018-9f1a4acad9154efe03cd3590b73841d2561e5168.tar.gz nccps-2018-9f1a4acad9154efe03cd3590b73841d2561e5168.tar.bz2 nccps-2018-9f1a4acad9154efe03cd3590b73841d2561e5168.zip |
Merge pull request #17 from Sashi20/master
Modified user status to view proposals
Diffstat (limited to 'static/website/templates/view-proposals.html')
-rwxr-xr-x | static/website/templates/view-proposals.html | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/static/website/templates/view-proposals.html b/static/website/templates/view-proposals.html index 269690e..6a3089a 100755 --- a/static/website/templates/view-proposals.html +++ b/static/website/templates/view-proposals.html @@ -30,7 +30,7 @@ <div class="table-responsive"> <table id = "myTable" width="100%" cellpadding="10" class="table-bordered table-hover tablesorter"> <colgroup> - {% if user.is_superuser %} + {% if user.is_staff %} <col width="15%" /> <col width="20%" /> <col width="10%" /> @@ -45,17 +45,17 @@ <col width="20%" /> {% endif %} </colgroup> - {% if user.is_superuser %} + {% if user.is_staff %} <th style="text-align: center;"> </th> <th style="text-align: center;">Speaker {% endif %} <th style="text-align: center;"> Type <th style="text-align: center;"> Title - {% if not user.is_superuser %} + {% if not user.is_staff %} <th style="text-align: center;"> View {% endif %} - {% if user.is_superuser %} + {% if user.is_staff %} <th style="text-align: center;"> <center> Duration</center> {% else %} @@ -64,7 +64,7 @@ <th style="text-align: center;"> Status {% for proposal in proposals %} <tr> - {% if user.is_superuser %} + {% if user.is_staff %} <td style="text-align: center;"> {% if proposal.status == 'Rejected' %} {% else %} @@ -76,14 +76,14 @@ </td> {% endif %} <td style="text-align: center;"> {{proposal.proposal_type }} </td> - {% if user.is_superuser %} + {% if user.is_staff %} <td style="white-space: nowrap; text-overflow:ellipsis; overflow: hidden; max-width:.5px;"><a title="Title : {{proposal.title}}, Tags: {{proposal.tags}}" href="{% url 'website:comment_abstract' proposal.id %}">{{proposal.title}}</a> </td> {% else %} <td style="white-space: nowrap; text-overflow:ellipsis; overflow: hidden; max-width:.5px;"> {{proposal.title}}</td> <td style="text-align: center;"><a href="{% url 'website:abstract_details' proposal.id %}">View</a> </td> {% endif %} <td style="text-align: center;"> - {% if user.is_superuser %} + {% if user.is_staff %} <center>{{ proposal.duration }} {% if proposal.proposal_type == 'ABSTRACT' %} Mins{% else %} Hrs {% endif %} @@ -100,7 +100,7 @@ {% elif proposal.status == 'Commented' %} <h5 style="color:brown;">{{proposal.status}}</h5> {% elif proposal.status == 'Edit' %} - {% if user.is_superuser %} + {% if user.is_staff %} <h5 style="color:grey;">{{proposal.status}}</h5> {% else %} <a href="">{{proposal.status}}</a> @@ -111,11 +111,11 @@ </td> <!-- <div> - {% if not user.is_superuser and type == 'ABSTRACT' %} + {% if not user.is_staff and type == 'ABSTRACT' %} <a href="{% url 'website:submitcfw' %}" class ="btn btn-info" role="button">Submit workshop </a> - {% elif not user.is_superuser and type == 'WORKSHOP' %} + {% elif not user.is_staff and type == 'WORKSHOP' %} <a href="{% url 'website:submitcfp' %}" class ="btn btn-info" role="button"> Submit paper </a> - {% elif not user.is_superuser%} + {% elif not user.is_staff%} {% endif %} </div>--> </tr> @@ -126,7 +126,7 @@ </p> - {% if user.is_superuser %} + {% if user.is_staff %} <input type="submit" id="delete" class ="btn btn-info" value="Delete" name="delete"/> <center> <input type="submit" id="accept" class ="btn btn-info" value="Accept" name="accept"/> |