horizon-mellanox/horizon_mellanox/settingspanel/templates/settingspanel/change.html

95 lines
1.4 KiB
HTML

{% extends 'base.html' %}
{% load i18n %}
{% load static %}
{% block title %}{% trans "Mellanox Settings" %}{% endblock %}
{% block main %}
<style>
#content_body .row .col-xs-12 .page-header{
display: none !important;
}
.modal-header{
display: none;
}
.static_page{
float: none;
width: 600px;
}
.form-group{
float: left;
width: 220px;
margin-right: 60px;
}
label[for^="id_n_a_"]{
visibility: hidden;
}
#id_n_a_{
visibility: hidden;
}
.col-sm-6{
width: 100%;
}
.product_header_neo{
background-color:#428BCA;
width:250px;
padding:7px;
margin-top:30px;
float: left;
height: 50px;
margin-right: 30px;
}
.product_header_ufm{
background-color:#428BCA;
width:250px;
margin-top:30px;
float: left;
height: 50px;
}
.ufm_lable{
color: #fff;
font-size: 27px;
font-style: italic;
font-weight: normal;
margin: 5px;
}
</style>
<div class="product_header_neo">
<img height=32 src="{% static 'horizon_mellanox/images/neo_logo_trans.png' %}">
</div>
<div class="product_header_ufm">
<label class="ufm_lable">UFM</label>
</div>
<div style="clear:both;height:0px;"></div>
{% include "horizon_mellanox/settingspanel/_change.html" %}
<script src="https://code.jquery.com/jquery-1.9.1.min.js"></script>
<script>
$( document ).ready(function() {
horizon.horizon_mellanox.prepareSettingsPanel();
});
</script>
{% endblock %}