Re: Migrating into Django 1.9; question about autoescape

2018-03-11 Thread Peter of the Norse
This seems odd, because autoescaping has been on since almost the beginning. https://web.archive.org/web/20080826081214/http://docs.djangoproject.com:80/en/dev/topics/templates/#id2 What actually changed with 1.9? > On Feb 13, 2018, at 7:53 AM, Bill Torcaso wrote: > >

Re: Template.render(Context) in django 1.10+

2018-03-11 Thread Daniel Roseman
On Sunday, 11 March 2018 21:06:51 UTC, Craig de Stigter wrote: > > Hi folks > > I'm upgrading a large app from 1.8 to 1.11 and coming up against this as I > traverse through django 1.9: > > >>> from django.template import engines, Context > ... t = engines['django'].from_string('') > ...

Re: Using Python Packages in Django

2018-03-11 Thread djangorobert
Hi Jani thanks I was thinking something like this from rx import Observable, Observer people = ['robert', 'anna', 'jake', 'harry', 'lacey'] class MyObserver(Observer): templates = 'peron/people.html' context = {} def on_next(self, x): print("Found: {}".format(x))

Template.render(Context) in django 1.10+

2018-03-11 Thread Craig de Stigter
Hi folks I'm upgrading a large app from 1.8 to 1.11 and coming up against this as I traverse through django 1.9: >>> from django.template import engines, Context ... t = engines['django'].from_string('') ... t.render(Context({})) ... /path/to/bin/django-admin.py:3: RemovedInDjango110Warning:

Re: Using Python Packages in Django

2018-03-11 Thread Jani Tiainen
Hi. Django is just Python so you can use any library as you see fit. You don't need to create any special models for that unless you want to store something to database. If that package creteates output you want to show in template just calling it from a view is sufficient. 11.3.2018 20.10

Using Python Packages in Django

2018-03-11 Thread djangorobert
Have a question may be silly but want to know when using a library like the Python rx library package how would I use it in django? Would I have to create a model? or could I use it in a View Thanks I was thinking in a View but was unsure if i could with a Function view instead Thanks IF

Some Basic Basic Question DJango Interview questions

2018-03-11 Thread Sharad Jaiswal
Django is a free and open-source web framework written in Python and Based on the model-view-template architectural pattern. Django web framework is a set of components that help you to develop websites earlier and easier. While building a website, you always need a similar set of components:

Re: Using success_url with reverse() in class-based generic view

2018-03-11 Thread Mayur Karmakar
Try to import reverse_lazy form "django.core.urlresolvers" in your views.py and declare the DeleteView as:- class MyDeleteView(DeleteView): model = models.YourModelName success_url = reverse_lazy('Your_app_name_for_urls.py':urlpattern_name_your_wanna_redirect_to) -- You received

Re: django URLconf current path didn't match

2018-03-11 Thread Jason
and you're getting this from the URL *localhost:8000/polls/ *? On Saturday, March 10, 2018 at 8:31:34 AM UTC-5, Usman Gill wrote: > > Using the URLconf defined in mysite.urls, Django tried these URL patterns, > in this order: > > polls/ [name='index'] > admin/ > > The current path, polls/,