mirror of https://github.com/interlegis/sigi.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.1 KiB
33 lines
1.1 KiB
{% load static from staticfiles %}
|
|
{% load i18n %}
|
|
|
|
<!--CSS JQuery-->
|
|
<link type="text/css" href="{% static 'css/jquery/smoothness/jquery.ui.all.css' %}" rel="stylesheet" />
|
|
|
|
<!--Scripts JQuery-->
|
|
<script type="text/javascript" src="{% static 'js/jquery/jquery-1.4.2.js' %}" ></script>
|
|
<script type="text/javascript" src="{% static 'js/jquery/ui/jquery.ui.core.js' %}" ></script>
|
|
<script type="text/javascript" src="{% static 'js/jquery/ui/jquery.ui.widget.js' %}" ></script>
|
|
<script type="text/javascript" src="{% static 'js/jquery/ui/jquery.ui.tabs.js' %}" ></script>
|
|
<script type="text/javascript" src="{% static 'js/jquery/ui/jquery.ui.mouse.js' %}" ></script>
|
|
<script type="text/javascript" src="{% static 'js/jquery/ui/jquery.ui.sortable.js' %}" ></script>
|
|
<script type="text/javascript">
|
|
$(function() {
|
|
$( "#tabs" ).tabs({
|
|
event: "mouseover"
|
|
});
|
|
});
|
|
</script>
|
|
|
|
<script>
|
|
$(function() {
|
|
$( "#sortable" ).sortable();
|
|
$( "#sortable" ).disableSelection();
|
|
});
|
|
</script>
|
|
|
|
<style>
|
|
.ui-tabs-nav {
|
|
background-image: url("{% static 'admin/img/nav-bg.gif' %}" );
|
|
}
|
|
</style>
|
|
|