Browse Source

Fix new example url tag

Andrew Rowls 12 years ago
parent
commit
b9b787e012
1 changed files with 2 additions and 1 deletions
  1. 2 1
      example/templates/layout.html

+ 2 - 1
example/templates/layout.html

@@ -1,3 +1,4 @@
+{% load url from future %}
 {% load i18n %}
 {% load sentry_helpers %}
 
@@ -6,7 +7,7 @@
     <head>
         <meta http-equiv="content-type" content="text/html; charset=utf-8">
         <meta name="robots" content="NONE,NOARCHIVE">
-        <link href="{% url sentry-media "sentry" "styles/global.min.css" %}" rel="stylesheet" type="text/css"/>
+        <link href="{% url 'sentry-media' "sentry" "styles/global.min.css" %}" rel="stylesheet" type="text/css"/>
         <title>{% block title %}Sentry{% endblock %}</title>
         {% block meta %}
         {% endblock %}