-
Notifications
You must be signed in to change notification settings - Fork 145
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
django 1.9 compatibility ('url' tag) #112
Comments
+1 |
1 similar comment
+1 |
PR are welcome ;-) |
hgross
added a commit
to hgross/django-tastypie-swagger
that referenced
this issue
Feb 20, 2016
Here you go: |
Fix has been merged in #113. Thanks all. |
Can you make a new release to get it from pip? |
vuchau
pushed a commit
to vuchau/django-tastypie-swagger
that referenced
this issue
Mar 14, 2017
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
in templates/tastypie_swagger/index.html, 1st line: {% load url from future %}
generates the following error in django 1.9: 'url' is not a valid tag or filter in tag library 'future'
In Django 1.9, url template tag was removed from the future template tag library.
So, now you can't load the url tag from the future library in Django 1.9. You can use the built-in url tag instead.
{% url 'some-url-name' %}
The text was updated successfully, but these errors were encountered: