Re: calling index.html

2019-09-28 Thread Lim Kai Wey
Note: Nonetheless, you should read more about the documentation or the
tutorials available since everything you need to start you first Django
project is already there.

-- 
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 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAPcVkjg5Y1MR0i0g1y0ON0DvU7MWsJ04iNc6uOw4yz1VT1MiaQ%40mail.gmail.com.


Re: calling index.html

2019-09-28 Thread Lim Kai Wey
Greetings Müller,

In order for your template to load for that specific page, you have to
state it under that page’s view in views.py

Eg:
class IndexView():
   template_name = “index.html”

// Or if it’s a function view

def index(request):

return render(request, 'app/index.html', context)


Hope it helps!

Sincerely,
Kai Wey

-- 
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 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAPcVkjioujw_kbhP9tnT3RZqZi5_cs3W7eU66MNirGeg%3DDo6-A%40mail.gmail.com.


calling index.html

2019-09-28 Thread Tato Müller
Hi everyone.

How can i call an html page when i request the root of my app, like 
http://127.0.0.1:8000/app.
I want index.html loads when i call this url.

Could you help me?

-- 
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 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/d7441b68-9cf2-47ec-950e-b44b6bd9717c%40googlegroups.com.


[no subject]

2019-09-28 Thread Perceval Maturure
dear team
my django cms is refusing to take in other templates when i select a
different template, what could be the problem?

i am on django cms 3.7.0 , django 2.1 and python 3
regards


-- 
*Perceval Maturure*

*083 303 9423*

-- 
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 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAFZtZmCJzJOfCfOGNm%2B3bep%3DaiJxep%2BgfXC8Yg_5tYmifnXG_A%40mail.gmail.com.


Re: Template linting

2019-09-28 Thread Jani Tiainen
Hi.

It could be intetesting thing to play with for example pyparsing-library.

But to my knoledge there is (not yet) such a linting tool.


la 28. syysk. 2019 klo 17.00 Tobias Bengfort 
kirjoitti:

> Hi,
>
> I was wondering whether there are any good options for linting HTML
> templates. I have searched for a while, but all I found falls into one
> of these categories:
>
> - half baked attempts that were abandoned at some point
> - HTML linters that get confused by template syntax
> - template linters for specific template languages, but not django
>
> My main motivation is finding missing closing tags in HTML, but anything
> on top of that would be welcome.
>
> I cannot be the first person with this question. How do you check your
> templates?
>
> tobias
>
> --
> 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 to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/590a6d82-1112-9c1f-dfcf-3e41473d0b42%40posteo.de
> .
>

-- 
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 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAHn91oc4WUh0HAtg68ajtgBEF5n47dO2hikU7i1FqO78TRpKBw%40mail.gmail.com.


Re: Django FastCGI and static files

2019-09-28 Thread Sipum
Block or mark as spam.
I think it will work. Give it a try

On Sat, 28 Sep, 2019, 7:30 PM Anike Sadia,  wrote:

> Hi pls how to leave this group
>
>
> On Tue, 17 Sep 2019 at 17:16, Martin Jaan Leesment 
> wrote:
>
>> Hey
>>
>> I'm new to serving Django website on a shared server as well as using
>> fastcgi and .htaccess so this might be a basic question. Namely I'm having
>> difficulties serving static content. I've tried playing with htaccess
>> rules, but no luck yet. My project structure:
>>
>> myproject/
>> ├── myapp
>> │   ├── admin.py
>> │   ├── apps.py
>> │   ├── models.py
>> │   ├── static
>> │   │   └── myapp
>> │   │   ├── css
>> │   │   │   ├── bootstrap.min.css
>> │   │   │   ├── bootstrap.min.min_myproject.css
>> │   │   │   └── proj.css
>> │   │   ├── fonts
>> │   │   ├── images
>> │   │   │   ├── logo.png
>> │   │   └── scripts
>> │   │   ├── bootstrap.bundle.min.js
>> │   │   └── bootstrap.min.js
>> │   ├── templates
>> │   │   └── myapp
>> │   │   ├── base.html
>> │   │   ├── footer.html
>> │   │   ├── header.html
>> │   │   ├── index.html
>> │   ├── tests.py
>> │   ├── urls.py
>> │   └── views.py
>> ├── manage.py
>> ├── myproject
>> │   ├── __init__.py
>> │   ├── locale
>> │   ├── media
>> │   ├── settings
>> │   │   ├── base.py
>> │   │   ├── dev.py
>> │   │   ├── __init__.py
>> │   │   ├── prod.py
>> │   ├── static
>> │   ├── templates
>> │   │   └── base.html
>> │   ├── urls.py
>> │   └── wsgi.py
>> ├── requirements
>> └── test.py
>>
>> My htaccess
>>
>> Options +ExecCGI
>> AddHandler fcgid-script .fcgi
>> RewriteEngine On
>> RewriteRule ^(/static.*)$ /static//$1 [L]
>> RewriteCond %{REQUEST_FILENAME} !-f
>> RewriteRule ^(.*)$ cgi-bin/mydjangapp.fcgi/$1 [QSA,L]
>>
>>
>> If anybody can help me figure out how to solve it, would really
>> appreciate.
>>
>> Thanks!
>>
>> Best
>> MJ
>>
>> --
>> 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 to django-users+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/80c1e98b-8a0a-482c-a20f-29b4c7afdcab%40googlegroups.com
>> 
>> .
>>
> --
> 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 to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CADi3MtsqOtuN%2BEuArMCZSJBuW-AYgvqDkDU4RsP3Y%2BF62SC_bQ%40mail.gmail.com
> 
> .
>

-- 
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 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAGHZBzzeObUv0vLdoU4arPb8iYz1pGYSKEUSopC7nX7Fz_YAcw%40mail.gmail.com.


Re: MongoDB Connect with Django

2019-09-28 Thread 'Abhishek Sharma' via Django users
Error during connecting Django with MongoDB, Please help on it.

django.core.exceptions.ImproperlyConfigured: 'django_mongodb_engine' isn't
an available database backend.
Try using 'django.db.backends.XXX', where XXX is one of:
'mysql', 'oracle', 'postgresql', 'sqlite3'



*Regards,*
Abhishek


On Fri, Sep 27, 2019 at 9:18 PM Kasper Laudrup 
wrote:

> On September 27, 2019 3:56:03 PM GMT+02:00, 'Abhishek Sharma' via Django
> users  wrote:
>>
>> Hi Guy,
>>
>> My question is, I'm trying to connect mongodb from localhost using dango
>> freamwork.
>>
>> Realy greatfull if any budy help on it.
>>
>> Regards,
>> Abhishek
>>
>>
>> On Fri, Sep 27, 2019, 6:43 PM Kasper Laudrup 
>> wrote:
>>
>>>
>>>
>>> On 27/09/2019 14.47, 'Abhishek Sharma' via Django users wrote:
>>> > Thanku! Kasper but i didn't find a solution
>>> >
>>>
>>> Then it would probably be easier for people to help you with a solution
>>> if you started by clarifying what your problem is...
>>>
>>> Kind regards,
>>>
>>> Kasper Laudrup
>>>
>>> --
>>> 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 to django-users+unsubscr...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/7166e14c-f156-f5ee-17a3-5e978293b52c%40stacktrace.dk
>>> .
>>>
>>
>>
>>
>>
>> --
>>
>> The information in this e-mail and any attachments is confidential and
>> may be legally privileged. It is intended solely for the addressee or
>> addressee's. If you are not an intended recipient, please delete the
>> message and any attachments and notify the sender of nondelivery. Any use
>> or disclosure of the contents of either is unauthorised and may be
>> unlawful. All liability for viruses is excluded to the fullest extent
>> permitted by law. Any views expressed in this message are those of the
>> individual sender, except where the sender states them, with requisite
>> authority, to be those of the organisation.
>>
>>
> Hi buddy,
>
> That's not a question.
>
> What have you tried so far?
>
> Did you follow the instructions that someone was kind enough to send you a
> screenshot of?
>
> Which errors did you get, where's your code?
>
> Your not going to get any help until you figure out how to ask a question
> that someone can actually answer.
>
> Kind regards,
>
> Kasper
>
> --
> 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 to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/890A2FB0-C7C9-47DC-9FB1-678A7D68F73A%40stacktrace.dk
> 
> .
>

-- 


-- 

















The information in this
e-mail and any attachments is 
confidential and may be legally privileged. It is
intended solely for the 
addressee or addressee's. If you are not an intended
recipient, please 
delete the message and any attachments and notify the sender
of 
nondelivery. Any use or disclosure of the contents of either is 
unauthorised
and may be unlawful. All liability for viruses is excluded to 
the fullest
extent permitted by law. Any views expressed in this message 
are those of the
individual sender, except where the sender states them, 
with requisite
authority, to be those of the organisation.

-- 
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 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CADXAtDYfPft7Jder7CXP1OHQ6UMOghoMvimOhdeFLq7fcc-vgg%40mail.gmail.com.


Re: Django FastCGI and static files

2019-09-28 Thread Anike Sadia
Hi pls how to leave this group


On Tue, 17 Sep 2019 at 17:16, Martin Jaan Leesment 
wrote:

> Hey
>
> I'm new to serving Django website on a shared server as well as using
> fastcgi and .htaccess so this might be a basic question. Namely I'm having
> difficulties serving static content. I've tried playing with htaccess
> rules, but no luck yet. My project structure:
>
> myproject/
> ├── myapp
> │   ├── admin.py
> │   ├── apps.py
> │   ├── models.py
> │   ├── static
> │   │   └── myapp
> │   │   ├── css
> │   │   │   ├── bootstrap.min.css
> │   │   │   ├── bootstrap.min.min_myproject.css
> │   │   │   └── proj.css
> │   │   ├── fonts
> │   │   ├── images
> │   │   │   ├── logo.png
> │   │   └── scripts
> │   │   ├── bootstrap.bundle.min.js
> │   │   └── bootstrap.min.js
> │   ├── templates
> │   │   └── myapp
> │   │   ├── base.html
> │   │   ├── footer.html
> │   │   ├── header.html
> │   │   ├── index.html
> │   ├── tests.py
> │   ├── urls.py
> │   └── views.py
> ├── manage.py
> ├── myproject
> │   ├── __init__.py
> │   ├── locale
> │   ├── media
> │   ├── settings
> │   │   ├── base.py
> │   │   ├── dev.py
> │   │   ├── __init__.py
> │   │   ├── prod.py
> │   ├── static
> │   ├── templates
> │   │   └── base.html
> │   ├── urls.py
> │   └── wsgi.py
> ├── requirements
> └── test.py
>
> My htaccess
>
> Options +ExecCGI
> AddHandler fcgid-script .fcgi
> RewriteEngine On
> RewriteRule ^(/static.*)$ /static//$1 [L]
> RewriteCond %{REQUEST_FILENAME} !-f
> RewriteRule ^(.*)$ cgi-bin/mydjangapp.fcgi/$1 [QSA,L]
>
>
> If anybody can help me figure out how to solve it, would really appreciate.
>
> Thanks!
>
> Best
> MJ
>
> --
> 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 to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/80c1e98b-8a0a-482c-a20f-29b4c7afdcab%40googlegroups.com
> 
> .
>

-- 
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 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CADi3MtsqOtuN%2BEuArMCZSJBuW-AYgvqDkDU4RsP3Y%2BF62SC_bQ%40mail.gmail.com.


Template linting

2019-09-28 Thread Tobias Bengfort
Hi,

I was wondering whether there are any good options for linting HTML
templates. I have searched for a while, but all I found falls into one
of these categories:

- half baked attempts that were abandoned at some point
- HTML linters that get confused by template syntax
- template linters for specific template languages, but not django

My main motivation is finding missing closing tags in HTML, but anything
on top of that would be welcome.

I cannot be the first person with this question. How do you check your
templates?

tobias

-- 
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 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/590a6d82-1112-9c1f-dfcf-3e41473d0b42%40posteo.de.


Re: modelfields

2019-09-28 Thread challa.Harikrishna chowdary
error is solved thanks  for response

regards
HARI.CH

-- 
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 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAB3Gwyc_byccvOrGvmzBmCpB8XyB5b%3D%2BrJ%3D0dLhJ4WELhOs7sg%40mail.gmail.com.


Re: HOW TO DISPLAY THE COLLAPSED DATA IN CARD using django and bootstrap

2019-09-28 Thread Gil Obradors
How do you know? Not seeing in you code


If it were in my desk, I will try first copy a example demo code.  If
works, then template it, but not the second  before the "core" isn't working
Console log browser can give help


Missatge de leb dev  del dia ds., 28 de set. 2019 a
les 10:27:

> js and bootstrap files are loaded correctly.
>
> On Saturday, September 28, 2019 at 10:56:41 AM UTC+3, leb dev wrote:
>>
>> I have a django project that includes cards where each card contains a
>> collapse that will hide or show the data.
>>
>> Problem is once i do a **foreach loop** the cards appear but the collapse
>> is not working and doesn't display any data.
>>
>> I used the below steps:
>>
>> create function in views.py
>> 
>>
>> def displaydata(request,pk):
>> c = cursor.execute('SELECT ID,Nickname_,Date_of_Birth FROM Person_
>> WHERE ID = pk ')
>> print("c ===>",c)
>> return redirect("search")
>> return render(request,"displaydata.html",{"c":c})
>>
>> create URL in urls.py
>> ==
>>
>>  path("displaydata//",displaydata,name = "displaydata")
>>
>> create a template that display the cards
>> =
>>
>>   
>> 
>> {% for obj in object_list %}
>>
>> 
>>
>> 
>> 
>> 
>> > alt="...">
>> 
>> 
>> > "#table-collapsed" caller-id ="" aria-controls="collapse-collapsed"
>> id="heading-collapsed{{obj.0}">
>> 
>>  Details
>>
>> 
>>
>> $(document).on('click','.collapsed d-block',function(){
>>
>> $('#heading-collapsed').attr('caller-id',$(this).attr('id'));
>> });
>> 
>>
>>
>> 
>>
>>
>> create a template that display the **collapsed data**
>> =
>>
>>   {% for row in c %}
>> > aria-labelledby="heading-collapsed">
>> 
>> 
>> 
>> NICKNAME
>> {{ row.1 }}
>> 
>> 
>> DOB
>> {{ row.2 }}
>> 
>> 
>> 
>> 
>>
>> {% endfor %}
>>
> --
> 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 to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/b9f6644b-fe3b-4b5e-9838-cc06d194fb42%40googlegroups.com
> 
> .
>

-- 
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 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAK-JoTQF0pNkGsj5kDjwwDfAxZMg97CFwpAhMg5edA3WU3j1iw%40mail.gmail.com.


Re: HOW TO DISPLAY THE COLLAPSED DATA IN CARD using django and bootstrap

2019-09-28 Thread leb dev
js and bootstrap files are loaded correctly.

On Saturday, September 28, 2019 at 10:56:41 AM UTC+3, leb dev wrote:
>
> I have a django project that includes cards where each card contains a 
> collapse that will hide or show the data. 
>
> Problem is once i do a **foreach loop** the cards appear but the collapse 
> is not working and doesn't display any data.
>
> I used the below steps:
>
> create function in views.py
> 
>
> def displaydata(request,pk):
> c = cursor.execute('SELECT ID,Nickname_,Date_of_Birth FROM Person_ 
> WHERE ID = pk ')
> print("c ===>",c)
> return redirect("search")
> return render(request,"displaydata.html",{"c":c})
>
> create URL in urls.py
> ==
>
>  path("displaydata//",displaydata,name = "displaydata")
>
> create a template that display the cards 
> =
>
>   
> 
> {% for obj in object_list %}
> 
> 
> 
> 
> 
> 
>  alt="...">
> 
> 
>  "#table-collapsed" caller-id ="" aria-controls="collapse-collapsed" 
> id="heading-collapsed{{obj.0}">
> 
>  Details
> 
> 
> 
> $(document).on('click','.collapsed d-block',function(){
> 
> $('#heading-collapsed').attr('caller-id',$(this).attr('id'));
> });
> 
> 
> 
> 
>
>  
> create a template that display the **collapsed data**
> =
>
>   {% for row in c %}
>  aria-labelledby="heading-collapsed">
> 
> 
> 
> NICKNAME
> {{ row.1 }}
>  
> 
> DOB
> {{ row.2 }}
>  
> 
> 
> 
> 
> {% endfor %}
>

-- 
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 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/b9f6644b-fe3b-4b5e-9838-cc06d194fb42%40googlegroups.com.


Re: HOW TO DISPLAY THE COLLAPSED DATA IN CARD using django and bootstrap

2019-09-28 Thread Gil Obradors
HI!

Can you paste console log from browser? Maybe you can see and error here ,
when you collapse down/up
Can you assure that js files an css files from bootstrap are correctly
loaded? ( network tab of browse debug tools)





Missatge de leb dev  del dia ds., 28 de set. 2019 a
les 9:57:

> I have a django project that includes cards where each card contains a
> collapse that will hide or show the data.
>
> Problem is once i do a **foreach loop** the cards appear but the collapse
> is not working and doesn't display any data.
>
> I used the below steps:
>
> create function in views.py
> 
>
> def displaydata(request,pk):
> c = cursor.execute('SELECT ID,Nickname_,Date_of_Birth FROM Person_
> WHERE ID = pk ')
> print("c ===>",c)
> return redirect("search")
> return render(request,"displaydata.html",{"c":c})
>
> create URL in urls.py
> ==
>
>  path("displaydata//",displaydata,name = "displaydata")
>
> create a template that display the cards
> =
>
>   
> 
> {% for obj in object_list %}
>
> 
>
> 
> 
> 
>  alt="...">
> 
> 
>  "#table-collapsed" caller-id ="" aria-controls="collapse-collapsed"
> id="heading-collapsed{{obj.0}">
> 
>  Details
>
> 
>
> $(document).on('click','.collapsed d-block',function(){
>
> $('#heading-collapsed').attr('caller-id',$(this).attr('id'));
> });
> 
>
>
> 
>
>
> create a template that display the **collapsed data**
> =
>
>   {% for row in c %}
>  aria-labelledby="heading-collapsed">
> 
> 
> 
> NICKNAME
> {{ row.1 }}
> 
> 
> DOB
> {{ row.2 }}
> 
> 
> 
> 
>
> {% endfor %}
>
> --
> 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 to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/4e300433-1840-4f00-9e88-2109d9da625d%40googlegroups.com
> 
> .
>

-- 
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 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAK-JoTT3rKcuNBhckhr1XRRUtdL41rNuhbR3XmJF9d0cZXcn6Q%40mail.gmail.com.


HOW TO DISPLAY THE COLLAPSED DATA IN CARD using django and bootstrap

2019-09-28 Thread leb dev
I have a django project that includes cards where each card contains a 
collapse that will hide or show the data. 

Problem is once i do a **foreach loop** the cards appear but the collapse 
is not working and doesn't display any data.

I used the below steps:

create function in views.py


def displaydata(request,pk):
c = cursor.execute('SELECT ID,Nickname_,Date_of_Birth FROM Person_ 
WHERE ID = pk ')
print("c ===>",c)
return redirect("search")
return render(request,"displaydata.html",{"c":c})

create URL in urls.py
==

 path("displaydata//",displaydata,name = "displaydata")

create a template that display the cards 
=

  

{% for obj in object_list %}











 Details



$(document).on('click','.collapsed d-block',function(){

$('#heading-collapsed').attr('caller-id',$(this).attr('id'));
});





 
create a template that display the **collapsed data**
=

  {% for row in c %}




NICKNAME
{{ row.1 }}
 

DOB
{{ row.2 }}
 




{% endfor %}

-- 
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 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/4e300433-1840-4f00-9e88-2109d9da625d%40googlegroups.com.


A good explanation on dispatch() method

2019-09-28 Thread Deep Sukhwani
I found this explanation on SO
 much more layman terms
oriented. It helped me understand just after the first read of it.
Sharing in case it helps others too.

*Official Django documentation*


--
Regards
Deep L Sukhwani
SO  | Twitter
 | LinkedIn

ᐧ

-- 
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 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAEMqiPdSOjTK5kirdf_H6SKGncm%2BUEYGLUD5e8h4f4tbGn_QFQ%40mail.gmail.com.