jquery statics loaded in organization's base template

This commit is contained in:
Serghei Mihai 2015-04-29 10:38:23 +02:00
parent 64438aee02
commit f4282f7f09
2 changed files with 11 additions and 12 deletions

View File

@ -1,5 +1,14 @@
{% extends "uauth/base.html" %}
{% load i18n %}
{% load i18n static %}
{% block css %}
<link rel="stylesheet" type="text/css" media="all" href="{% static "css/jquery-ui.min.css" %}" />
{{ block.super }}
{% endblock %}
{% block extrascripts %}
<script src="{% static "js/jquery-ui.min.js" %}"></script>
{% endblock %}
{% block logout-url %}{% url "logout" %}{% endblock %}

View File

@ -1,15 +1,5 @@
{% extends "organization/base.html" %}
{% load i18n static %}
{% block css %}
{{ block.super }}
<link rel="stylesheet" type="text/css" media="all" href="{% static "css/jquery-ui.min.css" %}" />
{% endblock %}
{% block extrascripts %}
<script src="{% static "js/jquery-ui.min.js" %}"></script>
{% endblock %}
{% load i18n %}
{% block title %}
{% trans "User creation" %}