NOT DISPLAYING PAGE

2024-11-07 Thread Heman Okumbo
Hello everyone,my project is not displaying the page on the browser though
I've followed the Django project tutorial.
my project urls:


from django.contrib import admin
from django.urls import path, include

urlpatterns = [
path('land/', include('land.urls')),path('admin/', admin.site.urls),]


my app is called land,the urls are:


from django.contrib import admin
from django.urls import path
from . import views

urlpatterns = [path('pen',views.tome,name='pen'),
path('admin/', admin.site.urls),
]
when i access the page on local host  ie 8000/land/ and app urls to
path('',views.tome),,the tome function is displayed
But when i do ..….8000/pen/ i get an error that the path pen/ could not be
found.
What should i do?

-- 
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 visit 
https://groups.google.com/d/msgid/django-users/CAJt9CbhjZJUuLHEAC0VuqeDqraiDGFW8VxZBwp0YLNJ8m5BXTw%40mail.gmail.com.


Re: IMPORT PROBLEM

2024-09-02 Thread Heman Okumbo
Thanks for the tip,what can be the problem if Django is not importing a
function from the app directory ie from land import views,the function in
views is pen, error traceback states there is no pen function in views.

On Mon, Sep 2, 2024, 12:12 Augusto Domingos 
wrote:

> Good... it's just a path issue.
>
> Instead of doing '*from . import views*', try this: '*from {app_name}
> import views*'.
>
> In your case, you have an app named *'land*', so it would look something
> like this:
>
> '*from land import views*'.
>
> You need to specify the app name because of the directory structure. When
> you use 'from . import', you're telling Django to import something from the
> current directory, which in your case is 'homeland'. However, 'homeland'
> typically doesn't contain an app directory.
>
> And please make sure you actually created app with *manage.py startapp
> {app_name}* and included the app in your *settings.py*:
> INSTALLED_APPS = [
> 'django.contrib.admin',
> 'land.apps.LandConfig' # your app
>
> ]
> Em segunda-feira, 2 de setembro de 2024 às 09:44:46 UTC+2, Heman Okumbo
> escreveu:
>
> Homeland is my project directory,there is another folder in the same
> directory with the same name,my apps directory is named land and its where
> i am trying to import views from.
> I get the below traceback error when i try the import.
>
> On Mon, Sep 2, 2024, 09:46 Augusto Domingos 
> wrote:
>
>
> can you send some screenshots showings how you are importing the view?
> Em segunda-feira, 2 de setembro de 2024 às 07:50:38 UTC+2, Heman Okumbo
> escreveu:
>
> My project url cannot import views from the app folder, what ks the
> problem?
>
> --
> 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...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/64c28c86-41d4-4242-a8bf-05862a4b18fbn%40googlegroups.com
> <https://groups.google.com/d/msgid/django-users/64c28c86-41d4-4242-a8bf-05862a4b18fbn%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
>
> --
> 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/da36e2df-a452-43e6-b02d-0f7621aaed65n%40googlegroups.com
> <https://groups.google.com/d/msgid/django-users/da36e2df-a452-43e6-b02d-0f7621aaed65n%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
>

-- 
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/CAJt9Cbggz0uSPy7A9VOhZfEuFppRoWbrHmr%3D3etBTJZgbWmiEA%40mail.gmail.com.


IMPORT PROBLEM

2024-09-01 Thread Heman Okumbo
My project url cannot import views from the app folder, what ks the problem?

-- 
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/CAJt9Cbh1%2B7aMiVne8SJwu%3DqygNtfMDd%3DvN0b8mBF3E8s6aHbbA%40mail.gmail.com.


Re: Chaining county/cites api to models

2022-05-06 Thread Heman Okumbo
"ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"
I need to chain my models  to this api such that after selecting the
city,you a get a redirect to a form so you can fill in personal details

On Fri, May 6, 2022, 12:36 Muhammad Juwaini Abdul Rahman 
wrote:

> Can you share the link of the API?
>
> On Fri, 6 May 2022 at 17:27, Heman Okumbo  wrote:
>
>> Thanks for the tip,i guess i have to dig deeper to get what exactly fits
>> my model design.
>>
>> On Fri, May 6, 2022, 04:04 Muhammad Juwaini Abdul Rahman <
>> juwa...@gmail.com> wrote:
>>
>>> Try this:
>>>
>>>
>>> https://simpleisbetterthancomplex.com/tutorial/2018/01/29/how-to-implement-dependent-or-chained-dropdown-list-with-django.html
>>>
>>> On Thu, 5 May 2022 at 23:46, Heman Okumbo  wrote:
>>>
>>>> I need to have clients posting their products based on their
>>>> countries,States and cities.I got this api that show a drop down list based
>>>> on country, states and cities.How do I chain my models to this api? Any
>>>> leads will be appreciated.Thanks
>>>>
>>>> --
>>>> 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/CAJt9CbjDgLT-_Gj9SuWnfStwgfTnOsSCXfwK%3DNNq3DRXGQmuzQ%40mail.gmail.com
>>>> <https://groups.google.com/d/msgid/django-users/CAJt9CbjDgLT-_Gj9SuWnfStwgfTnOsSCXfwK%3DNNq3DRXGQmuzQ%40mail.gmail.com?utm_medium=email&utm_source=footer>
>>>> .
>>>
>>>
>>>> --
>>> 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/CAFKhtoS%2BjG_nmuZea%2BpgDFRaKY9t9%2BE3rvgumK_YQL%3DN5q92gA%40mail.gmail.com
>>> <https://groups.google.com/d/msgid/django-users/CAFKhtoS%2BjG_nmuZea%2BpgDFRaKY9t9%2BE3rvgumK_YQL%3DN5q92gA%40mail.gmail.com?utm_medium=email&utm_source=footer>
>>> .
>>>
>> --
>> 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/CAJt9Cbjw2Aa8_6somCsm8vf3K9DaXOwjKPEmjDFuCEwrs6voRA%40mail.gmail.com
>> <https://groups.google.com/d/msgid/django-users/CAJt9Cbjw2Aa8_6somCsm8vf3K9DaXOwjKPEmjDFuCEwrs6voRA%40mail.gmail.com?utm_medium=email&utm_source=footer>
>> .
>>
> --
> 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/CAFKhtoT6gOk22Hf8w1S5yuPcLfXLW-c1-ytjLQsKgotchrRaGA%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CAFKhtoT6gOk22Hf8w1S5yuPcLfXLW-c1-ytjLQsKgotchrRaGA%40mail.gmail.com?utm_medium=email&utm_source=footer>
> .
>

-- 
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/CAJt9CbgSEyY0%3Dq%3DZ69YJofGhu%2B5J-Rv6BwVK1TB1oTiPqjkznQ%40mail.gmail.com.


Re: Chaining county/cites api to models

2022-05-06 Thread Heman Okumbo
Thanks for the tip,i guess i have to dig deeper to get what exactly fits my
model design.

On Fri, May 6, 2022, 04:04 Muhammad Juwaini Abdul Rahman 
wrote:

> Try this:
>
>
> https://simpleisbetterthancomplex.com/tutorial/2018/01/29/how-to-implement-dependent-or-chained-dropdown-list-with-django.html
>
> On Thu, 5 May 2022 at 23:46, Heman Okumbo  wrote:
>
>> I need to have clients posting their products based on their
>> countries,States and cities.I got this api that show a drop down list based
>> on country, states and cities.How do I chain my models to this api? Any
>> leads will be appreciated.Thanks
>>
>> --
>> 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/CAJt9CbjDgLT-_Gj9SuWnfStwgfTnOsSCXfwK%3DNNq3DRXGQmuzQ%40mail.gmail.com
>> <https://groups.google.com/d/msgid/django-users/CAJt9CbjDgLT-_Gj9SuWnfStwgfTnOsSCXfwK%3DNNq3DRXGQmuzQ%40mail.gmail.com?utm_medium=email&utm_source=footer>
>> .
>>
> --
> 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/CAFKhtoS%2BjG_nmuZea%2BpgDFRaKY9t9%2BE3rvgumK_YQL%3DN5q92gA%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CAFKhtoS%2BjG_nmuZea%2BpgDFRaKY9t9%2BE3rvgumK_YQL%3DN5q92gA%40mail.gmail.com?utm_medium=email&utm_source=footer>
> .
>

-- 
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/CAJt9Cbjw2Aa8_6somCsm8vf3K9DaXOwjKPEmjDFuCEwrs6voRA%40mail.gmail.com.


Chaining county/cites api to models

2022-05-05 Thread Heman Okumbo
I need to have clients posting their products based on their
countries,States and cities.I got this api that show a drop down list based
on country, states and cities.How do I chain my models to this api? Any
leads will be appreciated.Thanks

-- 
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/CAJt9CbjDgLT-_Gj9SuWnfStwgfTnOsSCXfwK%3DNNq3DRXGQmuzQ%40mail.gmail.com.


MODELFORM DESIGN

2022-04-15 Thread Heman Okumbo
I need to implement a model design where users_a upload
data:(Description_Fields-name,email,area,region,comments and some
images) according to their Location_Fields(country, city/state and
district).when user_b search for content they access this data according to
the criterion it was uploaded(Location_Fields)then
(Description_Field).Users_a can also view contents sent by other
users_a,user_b cannot perform operations done by users_a:upload data,I have
the code/api that produce (Location_Fileds):How do i chain
Description_fields to Location_Fields,especially the district?

-- 
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/CAJt9Cbj4WyfHvMT4z3JvvPd9MpTuub%2BreFsaTb8cZMAN_hHTrQ%40mail.gmail.com.


Re: runserver not working

2022-04-02 Thread Heman Okumbo
Ensure that your manage.py file  on your settings folder has the right
syntax as shown.

On Tue, Mar 22, 2022, 08:07 'Delvin Alexander' via Django users <
django-users@googlegroups.com> wrote:

> would anyone know why my "manage.py runserver" is not working?
>
> Every time i try running it on the command prompt, i get relocated to my
> visual studio of manage.py file that states this:
>
> #*!/usr/bin/env python*
> *"""Django's command-line utility for administrative tasks."""*
> *import os*
> *import sys*
>
>
> *def main():*
> *"""Run administrative tasks."""*
> *os.environ.setdefault('DJANGO_SETTINGS_MODULE',
> 'django_project.settings')*
> *try:*
> *from django.core.management import execute_from_command_line*
> *except ImportError as exc:*
> *raise ImportError(*
> *"Couldn't import Django. Are you sure it's installed and "*
> *"available on your PYTHONPATH environment variable? Did you "*
> *"forget to activate a virtual environment?"*
> *) from exc*
> *execute_from_command_line(sys.argv)*
>
>
> *if __name__ == '__main__':*
> *main()*
>
>
> A step in the right direction will be super helpful for 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/69291c68-61e7-4557-8175-7b705bcfcbb0n%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/CAJt9CbgeTKVtcuiARCtiGmHu-8-7nP3cFc4Wjdq0yqxbu80-oA%40mail.gmail.com.


Re: Reusable django templates

2022-03-14 Thread Heman Okumbo
Can't customize individual templates:the templates inherit all the
properties of the base template  eg styling and content.I am not able to
add custom content to the template that inherits from base template.

On Sat, Mar 12, 2022, 21:37 Clive Bruton  wrote:

>
> On 12 Mar 2022, at 17:43, Heman Okumbo wrote:
>
> > How comes I'm not able to modify my templates after extending from
> > a base template.eg can't add extra contents,the template only
> > display contents of the inherited template.
>
> Some code might help. It's not really clear to me what you are asking.
>
> But at a guess, you can use the {% include … %} template function to
> extend templates.
>
>
> -- Clive
>
> --
> 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/2B3DC48B-D567-45A9-B182-66D13D81B4AF%40indx.co.uk
> .
>

-- 
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/CAJt9CbgRwoH5v_ULX9tGbjyaBtizZMg-PW8f-VKO94apTcpaQg%40mail.gmail.com.


Reusable django templates

2022-03-12 Thread Heman Okumbo
How comes I'm not able to modify my templates after extending from a base
template.eg can't add extra contents,the template only display contents of
the inherited template.

-- 
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/CAJt9CbhJjE61OES-iTrRicpxH9GwtjPaWKr4wVovH%3DTsZqc8TQ%40mail.gmail.com.


Re: Update to Tutorial 4 - Generic Views

2022-03-11 Thread Heman Okumbo
on your way towards becoming a great developer.

On Fri, Mar 11, 2022, 18:48 Antonis Christofides <
anto...@antonischristofides.com> wrote:

> Hello,
>
> why do you say that importing of TemplateView is missing? I don't see
> TemplateView being used anywhere in that page.
>
> Regards,
>
> Antonis
>
> Antonis Christofides
> +30-6979924665 (mobile)
>
>
> On 11/03/2022 07.42, Dan Cox wrote:
>
> Hi I've been searching on how I might contribute to the tutorials but I
> can't seem to find a way. If you could help me there I could take this
> question to a potentially more useful place.
>
> Anyway; I am pretty new to Django but I've been following the tutorials
> and in the Generic Views section here:
> https://docs.djangoproject.com/en/4.0/intro/tutorial04/
>
> I beleive that there is a missing import statement in the urls.py file:
> from django.views.generic import TemplateView
>
> I was scratching my head trying to work out why I was getting errors and
> upon adding that (which I found in the more general documentation on Views)
> everything worked.
>
> Cheers,
>
> Dan.
> --
> 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/9869e767-7255-40e4-839e-fdcb6d834257n%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/d6191aab-6f2a-a29f-e5f8-df4852189ad4%40antonischristofides.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/CAJt9CbhUG1hdAWBLcOZDgXGVgwcRDWJrRVQYWZ6ErbwP4PFN-g%40mail.gmail.com.


Re: How to create dynamic models in django??

2022-02-27 Thread Heman Okumbo
Refer here.https://docs.djangoproject.com/en/4.0/topics/db/models/

On Sun, Feb 27, 2022, 06:42 Prashanth Patelc 
wrote:

> How to create dynamic models in django rest framework?
> Is there any chance to create dynamic models with APIs
>
> Any examples please send me thanks in advance..
>
> 1) Requirement is need create table name and fields in frontend
> 2) we are  getting the data and store in to the db create db structure
> 3) get the table name and fields create table in backend &postgresql store
> to
> 4)this code don't update or add into the models
> 5)store the data into the tables
> 4)get the data into the tables using orm or any raw queries
>
> --
> 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/CAMCU6Coop%3DVU67%2B1Ui%2BswvA2xijUYcre%2B%3D-Z_CzLnf-1pRRXUw%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/CAJt9CbjjeOZ4Q1yZO%3Db6yLxTVd1P7OWR-nDOLp6h-BTYZcYYwg%40mail.gmail.com.


Re: Needs help

2022-02-22 Thread Heman Okumbo
Did you mean to turn(print) images to physical objects especially using 3D
printers?

On Tue, Feb 22, 2022, 12:55 Antonis Christofides <
anto...@antonischristofides.com> wrote:

> Hello Loic,
>
> Please how to turn a picture into a LEGO version?
> A project that does this will be welcome.
>
> Not sure what you mean by that and what it has to do with Django. You
> aren't going to get any useful answers in this list unless you change the
> way you ask questions.
>
> You should really take some time to read
> http://www.catb.org/~esr/faqs/smart-questions.html.
>
> Regards,
>
> Antonis
>
> Antonis Christofides
> +30-6979924665 (mobile)
>
>
> On 22/02/2022 11.30, loic ngounou wrote:
>
> Please how to turn a picture into a LEGO version?
> A project that does this will be welcome.
> --
> 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/26ef7fae-d58c-45f7-b132-c863aa2ebb03n%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/990f2eab-b8d3-5ecc-1f5f-635d44e06c05%40antonischristofides.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/CAJt9Cbho1YNQU9Tm%3D1p0geikbYNEOHkjqgn2ppxhH1jiTEdPnA%40mail.gmail.com.


Re: Authentication by proxy server was unsuccessful ,what the problem?, that's the output from my browser .

2022-02-17 Thread Heman Okumbo
Probably a refresh or caches to detect changes made to settings,as i had
earlier included additional settings.Thnx for the tip.How can you refresh
the django server?

On Thu, Feb 17, 2022, 22:10 kuda ronnie  wrote:

> i think its something to do with caching, refresh error i guess. u see
> after u connected the internet. the glitch was resolved.
>
>
>
> On Wed, Feb 16, 2022 at 4:03 PM Heman Okumbo 
> wrote:
>
>> I was running manage.py runserver without internet connection on my
>> machine and getting the above error.After internet connection, the server
>> started working well,even after disconnecting the internet later.What might
>> have caused this error
>>
>> --
>> 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/CAJt9CbjSyOfCiBgtzGP7p6DYpMb_d_Paugw-pnAYNg-HUj7sXw%40mail.gmail.com
>> <https://groups.google.com/d/msgid/django-users/CAJt9CbjSyOfCiBgtzGP7p6DYpMb_d_Paugw-pnAYNg-HUj7sXw%40mail.gmail.com?utm_medium=email&utm_source=footer>
>> .
>>
> --
> 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/CA%2B0QjxdQofOwOkQqFNOtBkV5VDhxfA2kJt1wb3R5NzKTd196oA%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CA%2B0QjxdQofOwOkQqFNOtBkV5VDhxfA2kJt1wb3R5NzKTd196oA%40mail.gmail.com?utm_medium=email&utm_source=footer>
> .
>

-- 
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/CAJt9Cbg7B5haWpQp8UN6ExEk5oyLagMBLe3a4bbF97Ppq1DNfA%40mail.gmail.com.