-
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.
- Loading branch information
1 parent
7089c53
commit d6a6457
Showing
3 changed files
with
136 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,134 @@ | ||
{% extends 'examination/base.html' %} | ||
{% block sidetabmenu %} | ||
<div class="ui medium fluid vertical pointing menu" style="max-width: 320px;"> | ||
|
||
<a class="item" href="{% url 'examination:submit' %}">Submit | ||
<i class="right floated chevron right icon"></i> | ||
</a> | ||
<a class="item" href="{% url 'examination:verify' %}">Verify | ||
<i class="right floated chevron right icon"></i> | ||
</a> | ||
<a class="active item" href="{% url 'examination:publish' %}"><B>Publish</B> | ||
<i class="right floated chevron right icon"></i> | ||
</a> | ||
<a class="item" href="#">Announcement | ||
<i class="right floated chevron right icon"></i> | ||
</a> | ||
<a class="item" href="#">Time Table | ||
<i class="right floated chevron right icon"></i> | ||
</a> | ||
</div> | ||
{% endblock %} | ||
|
||
{% block content %} | ||
|
||
<h1>Announcement</h1> | ||
<br /> | ||
|
||
{% comment %} Combined {% endcomment %} | ||
<div style="display: flex; flex-direction: column; gap: 30px;" > | ||
|
||
{% comment %} First Row {% endcomment %} | ||
<div style="display: flex; flex-direction: row; gap: 50px; " > | ||
|
||
<div style="display: flex; flex-direction: row; gap: 10px; " > | ||
<div style="margin-top: 8px;" > | ||
<label>Curriculum</label> | ||
</div> | ||
<div class="ui selection dropdown"> | ||
<input type="hidden" name="gender"> | ||
<i class="dropdown icon"></i> | ||
<div class="default text">Select Item</div> | ||
<div class="menu"> | ||
<div class="item" data-value="1">B.Tech</div> | ||
<div class="item" data-value="0">M.Tech</div> | ||
<div class="item" data-value="0">B.Des</div> | ||
<div class="item" data-value="0">M.Des</div> | ||
<div class="item" data-value="0">PhD</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div style="display: flex; flex-direction: row; gap: 10px; " > | ||
<div style="margin-top: 8px;" > | ||
<label>Batch</label> | ||
</div> | ||
<div class="ui selection dropdown"> | ||
<input type="hidden" name="gender"> | ||
<i class="dropdown icon"></i> | ||
<div class="default text">Select Item</div> | ||
<div class="menu"> | ||
<div class="item" data-value="1">B.Tech</div> | ||
<div class="item" data-value="0">M.Tech</div> | ||
<div class="item" data-value="0">B.Des</div> | ||
<div class="item" data-value="0">M.Des</div> | ||
<div class="item" data-value="0">PhD</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div style="display: flex; flex-direction: row; gap: 10px; " > | ||
<div style="margin-top: 8px;" > | ||
<label>Branch</label> | ||
</div> | ||
<div class="ui selection dropdown"> | ||
<input type="hidden" name="gender"> | ||
<i class="dropdown icon"></i> | ||
<div class="default text">Select Item</div> | ||
<div class="menu"> | ||
<div class="item" data-value="1">B.Tech</div> | ||
<div class="item" data-value="0">M.Tech</div> | ||
<div class="item" data-value="0">B.Des</div> | ||
<div class="item" data-value="0">M.Des</div> | ||
<div class="item" data-value="0">PhD</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
|
||
|
||
{% comment %} Second Row {% endcomment %} | ||
|
||
<div style="display: flex; flex-direction: row; gap: 50px; margin-left: 10px; " > | ||
|
||
<div style="display: flex; flex-direction: row; gap: 10px; " > | ||
<div style="margin-top: 8px;" > | ||
<label>Semester</label> | ||
</div> | ||
<div class="ui selection dropdown"> | ||
<input type="hidden" name="gender"> | ||
<i class="dropdown icon"></i> | ||
<div class="default text">Select Item</div> | ||
<div class="menu"> | ||
<div class="item" data-value="1">B.Tech</div> | ||
<div class="item" data-value="0">M.Tech</div> | ||
<div class="item" data-value="0">B.Des</div> | ||
<div class="item" data-value="0">M.Des</div> | ||
<div class="item" data-value="0">PhD</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
|
||
|
||
|
||
<a href="{% url 'examination:notReady_publish' %}"> | ||
<button class="ui primary button"> | ||
|
||
Search | ||
</button> | ||
</a> | ||
|
||
|
||
</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