Skip to content

Commit

Permalink
Use all-version compatible reference to admin media.
Browse files Browse the repository at this point in the history
  • Loading branch information
zlorf committed Sep 15, 2013
1 parent be2601e commit 9938ae5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dbsettings/templates/dbsettings/app_settings.html
@@ -1,8 +1,8 @@
{% extends "admin/base_site.html" %}
{% load i18n adminmedia %}
{% load i18n static %}
{% load url from future %}

{% block extrastyle %}{{ block.super }}<link rel="stylesheet" type="text/css" href="{% admin_media_prefix %}css/forms.css" />{% endblock %}
{% block extrastyle %}{{ block.super }}<link rel="stylesheet" type="text/css" href="{% get_static_prefix %}admin/css/forms.css" />{% endblock %}

{% block coltype %}colMS{% endblock %}
{% block bodyclass %}dbsettings{% endblock %}
Expand Down
4 changes: 2 additions & 2 deletions dbsettings/templates/dbsettings/site_settings.html
@@ -1,8 +1,8 @@
{% extends "admin/base_site.html" %}
{% load i18n adminmedia %}
{% load i18n static %}
{% load url from future %}

{% block extrastyle %}{{ block.super }}<link rel="stylesheet" type="text/css" href="{% admin_media_prefix %}css/forms.css" />{% endblock %}
{% block extrastyle %}{{ block.super }}<link rel="stylesheet" type="text/css" href="{% get_static_prefix %}admin/css/forms.css" />{% endblock %}

{% block coltype %}colMS{% endblock %}
{% block bodyclass %}dbsettings{% endblock %}
Expand Down

0 comments on commit 9938ae5

Please sign in to comment.