Re: Drawing simple objects in Django using canvas

2016-05-29 Thread James Schneider
On May 29, 2016 4:23 PM, "Nemanja Milosavljevic" wrote: > > > > down votefavorite > > I am trying to draw simple objects on HTML canvas with Django as my backend. Objects are simple geometrical shapes. I find a Fabric.js java script but it is complicated and I am trying to find something easier. C

Re: Simultaneous Web Requests appending responses in function based views

2016-05-29 Thread James Schneider
On May 29, 2016 4:23 PM, "cr katz" wrote: > > Hello, > I am new to django. I developed a web application using form based views. When I submit a single web request from the dev env, the response is returned correctly. When submit 2 simultaneously from 2 browsers, I see appended responses f

Re: TemplateSyntax Error - Invalid block tag '

2016-05-29 Thread James Schneider
On May 29, 2016 4:23 PM, "Joseph Mitchell" wrote: > > Hi, newbie here. While going through https://docs.djangoproject.com/en/1.9/intro/tutorial03/ and I get the following: > >> TemplateSyntaxError at /polls/ >> Invalid block tag on line 23: ' > > My templates/polls/index.html file has: > Do yo

Drawing simple objects in Django using canvas

2016-05-29 Thread Nemanja Milosavljevic
down votefavorite I am trying to draw simple objects on HTML canvas with Django as my backend. Objects are simple geometrical shapes. I find a Fabric.js java script but it is complicated and I am try

Simultaneous Web Requests appending responses in function based views

2016-05-29 Thread cr katz
Hello, I am new to django. I developed a web application using form based views. When I submit a single web request from the dev env, the response is returned correctly. When submit 2 simultaneously from 2 browsers, I see appended responses for each request. How can I process requests

Django: Begginer Problems

2016-05-29 Thread David Zárate
Hi! I'm making a financial analysis app in Django and to have some data to play with i have to store historical data of balance sheets and profit/loss statements. I need some suggestions on how i can accomplish that. These are my models so far: class Entity(models.Model): """ Holds information

TemplateSyntax Error - Invalid block tag '

2016-05-29 Thread Joseph Mitchell
Hi, newbie here. While going through https://docs.djangoproject.com/en/1.9/intro/tutorial03/ and I get the following: TemplateSyntaxError at /polls/ > Invalid block tag on line 23: ' or load this tag? My templates/polls/index.html file has: {% *if* latest_question_list %} > > <*ul*> >

how to append all-auth in my django project

2016-05-29 Thread pratyush singh
i started a project and now i dont understand how to add all-auth to my project i am having problem to understand its documentation actually i want to embed it with a already created web page of login and signup so how should i use all-auth authentication system in that i mean how to link all a

Re: Model inheritance with constraints

2016-05-29 Thread James Schneider
> > > What I have > = > > class MyFunModel(models.Model): > my_foo_field = > > What I am attempting to add > = > > class MyAnotherFunModel(MyFunModel): > my_another_foo_field = > > Such that the migration gives me *only* _myanotherfunmodel table with > fields "