-
Notifications
You must be signed in to change notification settings - Fork 45
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
Add Django 1.11 support #289
Comments
Are there any sub-tasks related to this? |
Well, I've added some subtasks to the ticket description... but probably the list is not complete. |
Alright. I would like to help with any small, repetitive tasks. E.g. replacing RequestContext and Context in some simple view classes/functions. |
Great, waiting a pull request 😄. Don't hesitate to ask us anything about testing the development code of WireCloud using Django 1.11. |
I found one use of I am new to Django, so need a bit of guidance to understand how things are working. |
PR #290 opened for |
The Django Template.render() docs still mention using a from django.template import Context, Template
>>> template = Template("My name is {{ my_name }}.")
>>> context = Context({"my_name": "Adrian"})
>>> template.render(context) What changes should I make to |
Well, I know
Also, Django 1.11 releases notes documents this change...
Thanks! |
Jenkins says that WireCloud passes all the tests when using Django 1.11 :). https://build.conwet.fi.upm.es/jenkins/view/Wirecloud/job/wirecloud-1.1.x-python2.7-django1.11/ @brylie Thanks for your support! |
Great project! Thanks for your dedicated work as well :-) |
Update WireCloud to work on Django 1.11
RequestContext
andContext
instances by simple dictionaries.setup.py
The text was updated successfully, but these errors were encountered: