Re: Single page Application

2021-10-07 Thread Steven Mapes
Did Django Have plan to issue Django version with Single page application > technic ??? > > Regards, > > -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving

Single page Application

2021-10-07 Thread KH. TAMAM
Hi Did Django Have plan to issue Django version with Single page application technic ??? Regards, -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email

Re: Single Page Application in Django

2017-01-10 Thread Chris Bartos
Hi, You don't have to use one or the other. You can use both authentication mechanisms. You would just list each authentication mechanism backend in your settings.py file. So, what would happen is the authentication framework will loop through each of the backends and if one backend fails than

Re: Single Page Application in Django

2016-03-08 Thread nikhil . ikhar
I m not sure if my first post went through or not. We are also trying to move to SPA using angular.js. While going to through this app https://github.com/Tivix/django-rest-auth, It seems that we have to use Token authentication on web and mobile. Session authentication is not an option. Is it tr

Re: Single Page Application in Django

2016-03-08 Thread nikhil . ikhar
I m also working on SPA with angular.js. One problem I have is regarding authentication. We have currently mixture of angular.js and html pages served by django but our new version will be SPA. Till now our project was using session authentication (web) & token authentication (mobile). I was

Re: Single Page Application in Django

2016-03-07 Thread acheraime .
Django Rest Framework. A powerful framework to build REST API on top of Django. Here's the link http://www.django-rest-framework.org/ On Mon, Mar 7, 2016 at 9:19 AM, Bob Gailer wrote: > > On Mar 7, 2016 7:04 AM, "Avraham Serour" wrote: > > > > DRF > I'll bite - what is DRF? Google does not he

Re: Single Page Application in Django

2016-03-07 Thread Dheerendra Rathor
Trying googling DRF django or DRF python. Anyway it is Django Rest Framework :-) On Monday, 7 March 2016 19:50:35 UTC+5:30, bob gailer wrote: > > > On Mar 7, 2016 7:04 AM, "Avraham Serour" > > wrote: > > > > DRF > I'll bite - what is DRF? Google does not help with that. > -- You received thi

Re: Single Page Application in Django

2016-03-07 Thread Bob Gailer
On Mar 7, 2016 7:04 AM, "Avraham Serour" wrote: > > DRF I'll bite - what is DRF? Google does not help with that. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email t

Re: Single Page Application in Django

2016-03-07 Thread Avraham Serour
ests and answer to them. if you are new to django I strongly recommend doing the tutorial, it will introduce you to the main concepts of django good luck Avraham On Sun, Mar 6, 2016 at 4:41 PM, Simon Gunacker wrote: > Hey everbody, > > I am new to django and I try to build a single pag

Single Page Application in Django

2016-03-06 Thread Simon Gunacker
Hey everbody, I am new to django and I try to build a single page application. It consists of different sections (header, portfolio, contact, ...). As far as I understand the django philosophy, each of these sections could be a separate app (having its own model, view and template). But: How