Skip to content
Snippets Groups Projects
Commit ea248c36 authored by ViolettaShevchenko's avatar ViolettaShevchenko Committed by PavelBegunkov
Browse files

#104 support interface refactor

parent a3b03b62
Branches
Tags
No related merge requests found
......@@ -22,6 +22,9 @@
&.P2Width {
width: 18.5% !important;
}
&.Width75 {
width: 75% !important;
}
&.Width65 {
width: 65% !important;
}
......
......@@ -12,7 +12,7 @@
{% block office_content %}
<div class="goodClearFix">
<h2 style="float: left">Сообщения пользователей</h2>
<select id="statusFilter" style="width: 10%" class="defaultForm FLeft StatusFilter">
<select id="statusFilter" style="width: 10%; min-width: 130px;" class="defaultForm FLeft StatusFilter">
<option value="all" {% if Filter == 'all'%}selected{% endif %}>Все</option>
<option value="opened" {% if Filter == 'opened'%}selected{% endif %}>Открытые</option>
<option value="processed" {% if Filter == 'processed'%}selected{% endif %}>В процессе</option>
......@@ -23,8 +23,8 @@
<div class="RequestsPage">
{% for req in Requests %}
<div id="{{ "requestIssue"~req.ID }}" class="goodClearFix RequestIssue">
<div class="defaultForm FLeft P1Width">
<div class="goodClearFix RequestIssue">
<div class="defaultForm FLeft Width75">
<div id="{{ "requestTitle"~req.ID }}" class="RequestTitle">{{ req.Title }}</div>
{% if req.UserRoleID == 1 %}{% set role = "students/" %}{% else %}{% set role = "teachers/" %}{% endif %}
<div class="RequestInfo">
......@@ -33,7 +33,7 @@
{{ req.Date }}
</div>
</div>
<select id="{{ "requestStatus"~req.ID }}" style="width: 10%" class="defaultForm FRight RequestStatus">
<select id="{{ "requestStatus"~req.ID }}" style="width: 10%; min-width: 130px;" class="defaultForm FRight RequestStatus">
<option value="opened" {% if req.Status == 'opened'%}selected{% endif %}>Открыт</option>
<option value="processed" {% if req.Status == 'processed'%}selected{% endif %}>В процессе</option>
<option value="closed" {% if req.Status == 'closed'%}selected{% endif %}>Закрыт</option>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment