Skip to content

Commit

Permalink
Fixes #pydannyGH-72 STATIC_URL instead of MEDIA_URL
Browse files Browse the repository at this point in the history
  • Loading branch information
maraujop committed Jun 22, 2011
1 parent 93b8a22 commit 4d14782
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions uni_form/templates/uni_form/includes.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{% comment %}
This is used by the 'uni_form_setup' template tag to identify where to grab media files.
{% endcomment %}
<link rel="stylesheet" href="{{ MEDIA_URL }}uni_form/uni-form.css" type="text/css" />
<link rel="stylesheet" href="{{ MEDIA_URL }}uni_form/default.uni-form.css" type="text/css" />
<script src="{{ MEDIA_URL }}uni_form/uni-form.jquery.js" type="text/javascript"></script>
<link rel="stylesheet" href="{{ STATIC_URL }}uni_form/uni-form.css" type="text/css" />
<link rel="stylesheet" href="{{ STATIC_URL }}uni_form/default.uni-form.css" type="text/css" />
<script src="{{ STATIC_URL }}uni_form/uni-form.jquery.js" type="text/javascript"></script>

0 comments on commit 4d14782

Please sign in to comment.