guide design not finished

This commit is contained in:
root 2019-07-06 00:14:15 -05:00
parent 601193ff3c
commit 4be99fe828
2 changed files with 62 additions and 22 deletions

View File

@ -1564,7 +1564,6 @@ footer {
form { form {
margin: 0px auto; margin: 0px auto;
margin-bottom: 10px; margin-bottom: 10px;
width: 60%;
} }
label { label {
@ -1680,6 +1679,47 @@ label {
} }
} }
#search_form {
margin: 0px;
width: 100%;
.input_search {
background: #caf0ff;
width: 300px;
height: 21px;
}
.button_search {
background: #ea7900;
color: white;
font-weight: bold;
margin-left: 20px;
}
.radio_guide input[type="radio"],input[type="checkbox"] {
display:none;
}
.radio_guide {
margin-top: 10px;
color: white;
}
.radio_guide label {
display:inline-block;
background-color:#1bb9ea;
padding: 10px 20px;
font-family:Arial;
font-size:16px;
border-radius: 4px;
}
.radio_guide input[type="radio"]:checked + label {
background-color:#ea7900;
}
.radio_guide input[type="checkbox"]:checked + label {
background-color:#ea7900;
}
.radio_guide label:hover {
background-color: #0e97ce;
}
}
#pedagogy { #pedagogy {
font-family: "Fira Sans"; font-family: "Fira Sans";
color: #062f38; color: #062f38;

View File

@ -8,29 +8,29 @@
{% block content %} {% block content %}
<form id="search_form" action="{{ url('pedagogy:guide') }}" method="get"> <form id="search_form" action="{{ url('pedagogy:guide') }}" method="get">
<p> <p>
<input type="text" name="search"> <input class="input_search" type="text" name="search">
<button>{% trans %}Details{% endtrans %}</button> <button class="button_search">{% trans %}Search{% endtrans %}</button>
</p> </p>
<p> <div class="radio_guide">
<input type="radio" name="department" value="EDIM">{% trans %}EDIM{% endtrans %} <input type="radio" name="department" id="radioEDIM" value="EDIM" checked><label for="radioEDIM">{% trans %}EDIM{% endtrans %}</label>
<input type="radio" name="department" value="EE">{% trans %}ENERGIE{% endtrans %} <input type="radio" name="department" id="radioEE" value="EE"><label for="radioEE">{% trans %}ENERGIE{% endtrans %}</label>
<input type="radio" name="department" value="IMSI">{% trans %}IMSI{% endtrans %} <input type="radio" name="department" id="radioIMSI" value="IMSI"><label for="radioIMSI">{% trans %}IMSI{% endtrans %}</label>
<input type="radio" name="department" value="GI">{% trans %}INFO{% endtrans %} <input type="radio" name="department" id="radioGI" value="GI"><label for="radioGI">{% trans %}INFO{% endtrans %}</label>
<input type="radio" name="department" value="MC">{% trans %}GMC{% endtrans %} <input type="radio" name="department" id="radioMC" value="MC"><label for="radioMC">{% trans %}GMC{% endtrans %}</label>
<input type="radio" name="department" value="HUMA">{% trans %}HUMA{% endtrans %} <input type="radio" name="department" id="radioHUMA" value="HUMA"><label for="radioHUMA">{% trans %}HUMA{% endtrans %}</label>
<input type="radio" name="department" value="TC">{% trans %}TC{% endtrans %} <input type="radio" name="department" id="radioTC" value="TC"><label for="radioTC">{% trans %}TC{% endtrans %}</label>
</p> </div>
<p> <div class="radio_guide">
<input type="radio" name="credit_type" value="CS">{% trans %}CS{% endtrans %} <input type="radio" name="credit_type" id="radioCS" value="CS"><label for="radioCS">{% trans %}CS{% endtrans %}</label>
<input type="radio" name="credit_type" value="TM">{% trans %}TM{% endtrans %} <input type="radio" name="credit_type" id="radioTM" value="TM"><label for="radioTM">{% trans %}TM{% endtrans %}</label>
<input type="radio" name="credit_type" value="EC">{% trans %}EC{% endtrans %} <input type="radio" name="credit_type" id="radioEC" value="EC"><label for="radioEC">{% trans %}EC{% endtrans %}</label>
<input type="radio" name="credit_type" value="QC">{% trans %}QC{% endtrans %} <input type="radio" name="credit_type" id="radioQC" value="QC"><label for="radioQC">{% trans %}QC{% endtrans %}</label>
<input type="radio" name="credit_type" value="TM">{% trans %}TM{% endtrans %} <input type="radio" name="credit_type" id="radioOM" value="OM"><label for="radioOM">{% trans %}OM{% endtrans %}</label>
<input type="checkbox" name="semester" value="AUTUMN">A <input type="checkbox" name="semester" id="radioAUTUMN" value="AUTUMN"><label for="radioAUTUMN">A</label>
<input type="checkbox" name="semester" value="SPRING">P <input type="checkbox" name="semester" id="radioSPRING" value="SPRING"><label for="radioSPRING">P</label>
<input type="checkbox" name="semester" value="AUTUMN_AND_SPRING"> <input type="checkbox" name="semester" id="radioAP" value="AUTUMN_AND_SPRING"><label for="radioAP">AP</label>
</p> </div>
<input type="text" name="json" hidden> <input type="text" name="json" hidden>
</form> </form>
{% if can_create_uv(user) %} {% if can_create_uv(user) %}