-
Notifications
You must be signed in to change notification settings - Fork 982
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1639 from Lone24wolf/ac-7-examination
Redirection Bugs Fixed
- Loading branch information
Showing
5 changed files
with
90 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
{% extends 'examination/base.html' %} | ||
|
||
{% block sidetabmenu %} | ||
<style> | ||
/* Your existing CSS styles */ | ||
|
||
.sortable-icon { | ||
margin-left: 5px; | ||
font-size: 1.2em; | ||
color: blue; | ||
} | ||
|
||
.sortable-icon + .sortable-icon { | ||
margin-left: 2px; | ||
} | ||
/* Your existing CSS styles */ | ||
|
||
.sortable-icon { | ||
margin-left: 5px; | ||
font-size: 1.2em; | ||
color: blue; | ||
display: inline-block; | ||
} | ||
|
||
th { | ||
white-space: nowrap; /* Prevent line breaks */ | ||
} | ||
|
||
th:first-child .sortable-icon { | ||
margin-left: 0; /* Remove left margin for the first icon */ | ||
} | ||
|
||
.sortable-icon + .sortable-icon { | ||
margin-left: 2px; | ||
} | ||
|
||
</style> | ||
<div class="ui medium fluid vertical pointing menu" style="max-width: 320px;"> | ||
|
||
<a class="active item" href="{% url 'examination:verifyGradesDean' %}">Verify | ||
<i class="right floated chevron right icon"></i> | ||
</a> | ||
<a class="item" href="{% url 'examination:validateDean' %}"> Validate | ||
<i class="right floated chevron right icon"></i> | ||
</a> | ||
|
||
|
||
|
||
</div> | ||
{% endblock %} | ||
|
||
{% block content %} | ||
<div class="ui segment"> | ||
<div class="ui message"> | ||
<div class="header"> | ||
{{message}} | ||
</div> | ||
|
||
<p>Please check back later or contact support for assistance.</p> | ||
</div> | ||
</div> | ||
|
||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters