Re: Template inheritance not working

2022-11-19 Thread subin
I will continue learning more about .

On Sat, Nov 19, 2022 at 5:53 PM Chukwudi Onwusa 
wrote:

> On WhatsApp
>
> On Sat, Nov 19, 2022, 17:14 Alec Delaney <96alecpatr...@gmail.com> wrote:
>
>> Hello, would you be available for zoom?
>>
>>
>> On Fri, Nov 18, 2022 at 10:04 PM Chukwudi Onwusa 
>> wrote:
>>
>>> What error is it showing you?
>>> Please send a picture of it. Remember you can save your base with your
>>> desired name, but you should also not that you should register your
>>> templates directory in settings template list as [BASE_DIRS/ "templates"]
>>> and Incase your template files are in an embedded directory inside your
>>> templates directory, kindly do well to correct it as
>>> "embeddedDirectory/baseName.html" and also correct your views for other
>>> templates references too if need be.
>>> Thanks.
>>> Best Regards.
>>>
>>> On Fri, Nov 18, 2022, 22:01 David Emanuel Sandoval <
>>> davidemanuelsando...@gmail.com> wrote:
>>>
 The base template contains the default content, and blocks with default
 contents in it. Then, in the child template, you can override those blocks.

 El vie, 18 nov 2022 17:54, Alec Delaney <96alecpatr...@gmail.com>
 escribió:

> Hello. How are you? Can I see another example of template inheritance?
>
> On Mon, Oct 31, 2022 at 2:34 PM Ammar Mohammed 
> wrote:
>
>> Hello dear
>> There is a little mistake in your code :
>> You should put the {%block block_name %} in your base template with
>> no code and the put the code you want to be displayed in your child
>> template file
>> Here is an example :
>>
>> // file.html :
>>
>> {% extends "index.html" %}
>>
>> {% block content %}
>> Hello, this is a test.
>> Help me.
>> {% endblock %}
>>
>> //index.html:
>> 
>> 
>> 
>> 
>> 
>> Document
>> 
>> 
>> {% block content %}
>>
>> {% endblock %}
>> 
>> 
>>
>>
>> --
>> 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/CAFGN%3DGjpkAW6NBXLZ%3DYL7eXy3FXmJ6DqWfNMh%2BikMrp7om361Q%40mail.gmail.com
>> 
>> .
>>
>>
>> On Mon, 31 Oct 2022, 8:09 PM Alec Delaney, <96alecpatr...@gmail.com>
>> wrote:
>>
>>> I have been trying to get my templates to work but they have been
>>> ineffective. here is my code:
>>> {% extends "index.html" %}
>>>
>>> 
>>> 
>>> 
>>> 
>>> 
>>> Document
>>> 
>>> 
>>> 
>>> {% block content %}
>>>
>>>
>>> {% endblock %}
>>> 
>>> 
>>> 
>>>
>>> //index.html:
>>>
>>> 
>>> 
>>> 
>>> 
>>> 
>>> Document
>>> 
>>> 
>>> {% block content %}
>>> Hello, this is a test.
>>> Help me.
>>> {% endblock %}
>>> 
>>> 
>>>
>>> --
>>> 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/CAFGN%3DGjpkAW6NBXLZ%3DYL7eXy3FXmJ6DqWfNMh%2BikMrp7om361Q%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/CAHs1H7sS6tndz4j8wiK_Dfpwqnb7sUcrc814Zp3eTndDJ%2B5Ewg%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
> 

Re: Template inheritance not working

2022-11-19 Thread subin
Season’s greetings! Our offices will be closed on Dec. 24 and 25. However

On Sat, Nov 19, 2022 at 5:53 PM Chukwudi Onwusa 
wrote:

> On WhatsApp
>
> On Sat, Nov 19, 2022, 17:14 Alec Delaney <96alecpatr...@gmail.com> wrote:
>
>> Hello, would you be available for zoom?
>>
>>
>> On Fri, Nov 18, 2022 at 10:04 PM Chukwudi Onwusa 
>> wrote:
>>
>>> What error is it showing you?
>>> Please send a picture of it. Remember you can save your base with your
>>> desired name, but you should also not that you should register your
>>> templates directory in settings template list as [BASE_DIRS/ "templates"]
>>> and Incase your template files are in an embedded directory inside your
>>> templates directory, kindly do well to correct it as
>>> "embeddedDirectory/baseName.html" and also correct your views for other
>>> templates references too if need be.
>>> Thanks.
>>> Best Regards.
>>>
>>> On Fri, Nov 18, 2022, 22:01 David Emanuel Sandoval <
>>> davidemanuelsando...@gmail.com> wrote:
>>>
 The base template contains the default content, and blocks with default
 contents in it. Then, in the child template, you can override those blocks.

 El vie, 18 nov 2022 17:54, Alec Delaney <96alecpatr...@gmail.com>
 escribió:

> Hello. How are you? Can I see another example of template inheritance?
>
> On Mon, Oct 31, 2022 at 2:34 PM Ammar Mohammed 
> wrote:
>
>> Hello dear
>> There is a little mistake in your code :
>> You should put the {%block block_name %} in your base template with
>> no code and the put the code you want to be displayed in your child
>> template file
>> Here is an example :
>>
>> // file.html :
>>
>> {% extends "index.html" %}
>>
>> {% block content %}
>> Hello, this is a test.
>> Help me.
>> {% endblock %}
>>
>> //index.html:
>> 
>> 
>> 
>> 
>> 
>> Document
>> 
>> 
>> {% block content %}
>>
>> {% endblock %}
>> 
>> 
>>
>>
>> --
>> 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/CAFGN%3DGjpkAW6NBXLZ%3DYL7eXy3FXmJ6DqWfNMh%2BikMrp7om361Q%40mail.gmail.com
>> 
>> .
>>
>>
>> On Mon, 31 Oct 2022, 8:09 PM Alec Delaney, <96alecpatr...@gmail.com>
>> wrote:
>>
>>> I have been trying to get my templates to work but they have been
>>> ineffective. here is my code:
>>> {% extends "index.html" %}
>>>
>>> 
>>> 
>>> 
>>> 
>>> 
>>> Document
>>> 
>>> 
>>> 
>>> {% block content %}
>>>
>>>
>>> {% endblock %}
>>> 
>>> 
>>> 
>>>
>>> //index.html:
>>>
>>> 
>>> 
>>> 
>>> 
>>> 
>>> Document
>>> 
>>> 
>>> {% block content %}
>>> Hello, this is a test.
>>> Help me.
>>> {% endblock %}
>>> 
>>> 
>>>
>>> --
>>> 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/CAFGN%3DGjpkAW6NBXLZ%3DYL7eXy3FXmJ6DqWfNMh%2BikMrp7om361Q%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/CAHs1H7sS6tndz4j8wiK_Dfpwqnb7sUcrc814Zp3eTndDJ%2B5Ewg%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
> 

Re: Template inheritance not working

2022-11-19 Thread subin
Hi

On Sat, Nov 19, 2022 at 5:53 PM Chukwudi Onwusa 
wrote:

> On WhatsApp
>
> On Sat, Nov 19, 2022, 17:14 Alec Delaney <96alecpatr...@gmail.com> wrote:
>
>> Hello, would you be available for zoom?
>>
>>
>> On Fri, Nov 18, 2022 at 10:04 PM Chukwudi Onwusa 
>> wrote:
>>
>>> What error is it showing you?
>>> Please send a picture of it. Remember you can save your base with your
>>> desired name, but you should also not that you should register your
>>> templates directory in settings template list as [BASE_DIRS/ "templates"]
>>> and Incase your template files are in an embedded directory inside your
>>> templates directory, kindly do well to correct it as
>>> "embeddedDirectory/baseName.html" and also correct your views for other
>>> templates references too if need be.
>>> Thanks.
>>> Best Regards.
>>>
>>> On Fri, Nov 18, 2022, 22:01 David Emanuel Sandoval <
>>> davidemanuelsando...@gmail.com> wrote:
>>>
 The base template contains the default content, and blocks with default
 contents in it. Then, in the child template, you can override those blocks.

 El vie, 18 nov 2022 17:54, Alec Delaney <96alecpatr...@gmail.com>
 escribió:

> Hello. How are you? Can I see another example of template inheritance?
>
> On Mon, Oct 31, 2022 at 2:34 PM Ammar Mohammed 
> wrote:
>
>> Hello dear
>> There is a little mistake in your code :
>> You should put the {%block block_name %} in your base template with
>> no code and the put the code you want to be displayed in your child
>> template file
>> Here is an example :
>>
>> // file.html :
>>
>> {% extends "index.html" %}
>>
>> {% block content %}
>> Hello, this is a test.
>> Help me.
>> {% endblock %}
>>
>> //index.html:
>> 
>> 
>> 
>> 
>> 
>> Document
>> 
>> 
>> {% block content %}
>>
>> {% endblock %}
>> 
>> 
>>
>>
>> --
>> 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/CAFGN%3DGjpkAW6NBXLZ%3DYL7eXy3FXmJ6DqWfNMh%2BikMrp7om361Q%40mail.gmail.com
>> 
>> .
>>
>>
>> On Mon, 31 Oct 2022, 8:09 PM Alec Delaney, <96alecpatr...@gmail.com>
>> wrote:
>>
>>> I have been trying to get my templates to work but they have been
>>> ineffective. here is my code:
>>> {% extends "index.html" %}
>>>
>>> 
>>> 
>>> 
>>> 
>>> 
>>> Document
>>> 
>>> 
>>> 
>>> {% block content %}
>>>
>>>
>>> {% endblock %}
>>> 
>>> 
>>> 
>>>
>>> //index.html:
>>>
>>> 
>>> 
>>> 
>>> 
>>> 
>>> Document
>>> 
>>> 
>>> {% block content %}
>>> Hello, this is a test.
>>> Help me.
>>> {% endblock %}
>>> 
>>> 
>>>
>>> --
>>> 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/CAFGN%3DGjpkAW6NBXLZ%3DYL7eXy3FXmJ6DqWfNMh%2BikMrp7om361Q%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/CAHs1H7sS6tndz4j8wiK_Dfpwqnb7sUcrc814Zp3eTndDJ%2B5Ewg%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/CAFGN%3DGitQmZVFG_v1kKOk5s5r53NYCYKEGFZ1Pdi%2Bm%2BiMAFRig%40mail.gmail.com

Re: Using django 4.1 code in django 3.2

2022-11-03 Thread subin
I will look forward to meeting you on July 11

On Thu, Nov 3, 2022 at 10:18 AM Lakshyaraj Dash <
dashlakshyaraj2...@gmail.com> wrote:

> Is there any problem if I deploy my django app written with django 4.1 in
> django 3.2 on render ?
> Please help
>
> --
> 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/CAF7qQgBaYBz4CdMjOoabrmaS%3D-iZAO3Pp4%2BcSG8fZZ%2BENdXTXw%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/CAJnMy6cKamZTQsh89-J6utYEtfuFVMir_UDWU48fTg%3DK-K8i9w%40mail.gmail.com.


Re: Using django 4.1 code in django 3.2

2022-11-03 Thread subin
Please let me know if that sounds okay.

On Thu, Nov 3, 2022 at 2:56 PM 'Steven Mapes' via Django users <
django-users@googlegroups.com> wrote:

> It'll depend on whether your code is 3.2 compatible or not so you'd need
> to test it and check dependencies first
>
> On Thursday, 3 November 2022 at 09:28:40 UTC Kasper Laudrup wrote:
>
>> On 03/11/2022 10.18, Lakshyaraj Dash wrote:
>> > Is there any problem if I deploy my django app written with django 4.1
>> > in django 3.2 on render ?
>>
>> Yes.
>>
>> 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/cb156148-ba0d-4460-bb54-cacc4cba9660n%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/CAJnMy6ca7AuoG1aRFZxzT45R1zcva_3cOv%2B7xUP%3Dj5Hv8w-Kqw%40mail.gmail.com.


Re: On button click need to call a python function...

2022-10-18 Thread subin
Please let me know if you need to reschedule.

On Tue, Oct 18, 2022 at 7:05 AM Saswat Mahapatra 
wrote:

> Hi ,
>
> I am new to django.
> On button click I need to call a python function which returns 2 values.
> If both the values are the same then I need to display the same image in 2
> places on the web page or else a different image.
>
> How to call the python function from html ?
>
> Thanks & Regards,
> Saswat
>
> --
> 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/294c7d09-d558-4b18-97c6-ee369c27a591n%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/CAJnMy6dbVhjKvmQyh5dU2osq1hF7qbsvwxLc41LFspgz6AqE-g%40mail.gmail.com.


Re: On button click need to call a python function...

2022-10-18 Thread subin
Please let me know if you need an extension.

On Tue, Oct 18, 2022 at 7:18 AM Saswat Mahapatra 
wrote:

> Hi  jitendra,
>
> Thank you for your quick response.  I am new to python  web development.
> On button click I need to call a python function and based on 2 values
> which It will return I need to show a image.
>
> Thank you,
> Saswat
>
> On Tuesday, 18 October 2022 at 11:41:39 UTC+5:30 jitendra...@gmail.com
> wrote:
>
>> Ping me
>>
>> On Tue, 18 Oct, 2022, 11:35 Saswat Mahapatra, 
>> wrote:
>>
>>> Hi ,
>>>
>>> I am new to django.
>>> On button click I need to call a python function which returns 2 values.
>>> If both the values are the same then I need to display the same image in 2
>>> places on the web page or else a different image.
>>>
>>> How to call the python function from html ?
>>>
>>> Thanks & Regards,
>>> Saswat
>>>
>>> --
>>> 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/294c7d09-d558-4b18-97c6-ee369c27a591n%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/6bc5e99e-8612-4c76-b577-71a061f50435n%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/CAJnMy6f%2BXRfXf9ih5DU-1YaKPB9SEtWTkTc4hiE1EkxvQKFivA%40mail.gmail.com.


Re: On button click need to call a python function...

2022-10-18 Thread subin
Have a good day.

On Tue, Oct 18, 2022 at 9:20 AM Mike Dewhirst  wrote:

> On 18/10/2022 5:04 pm, Saswat Mahapatra wrote:
>
> Hi ,
>
> I am new to django.
> On button click I need to call a python function which returns 2 values.
> If both the values are the same then I need to display the same image in 2
> places on the web page or else a different image.
>
> How to call the python function from html ?
>
>
> I would be looking at htmx.org
>
> Maybe django-htmx
>
> I haven't tried it but I intend to one of these days.
>
> N
>
>
>
>
> Thanks & Regards,
> Saswat
> --
> 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/294c7d09-d558-4b18-97c6-ee369c27a591n%40googlegroups.com
> 
> .
>
>
>
> --
> Signed email is an absolute defence against phishing. This email has
> been signed with my private key. If you import my public key you can
> automatically decrypt my signature and be sure it came from me. Just
> ask and I'll send it to you. Your email software can handle signing.
>
> --
> 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/2ff0b19e-5aca-bfec-38f4-d902f24d3410%40dewhirst.com.au
> 
> .
>

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


Re: Combining django apps

2022-10-18 Thread subin
Hi ! Thanks for making an appointment with us. We’re located at . We look
forward to seeing you then!

On Tue, Oct 18, 2022 at 11:01 AM Jun Tanaka  wrote:

>
> mysite/
>
> manage.py
>
> config/
>
> __init__.py
>
> settings.py
>
> urls.py
>
> wsgi.py
>
> app1/
>
> app1a/
>
> app1b/
>
> app2/
>
> app3/
>
> I would like to know how to combine  apps together just like above.  Each
> app itself  works fine when runserver. I followed some websites talking
> about this but I always get some error like ‘app1a' is not a registered
> namespace. I'm not very familiar with combining apps. I hope someone can
> tell me the simplest way to do that.
>
> Thank you.
>
> --
> 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/f4a91be8-c4a3-4fa1-9a73-bd202f1f6716n%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/CAJnMy6dLWHuJqEiK%2B463ieCP0UaME_mv0_kAMgVn8UgyTt4fRQ%40mail.gmail.com.


Re: 'WSGIRequest' object has no attribute 'is_ajax'

2022-09-16 Thread subin
Kindly notify me should you need any other information.

On Fri, Sep 16, 2022 at 1:26 PM André Lewis  wrote:

> What version of Django are you using? If it's 4.1, I'm pretty sure it's no
> longer supported.
>
> You can check the docs to confirm:
> https://docs.djangoproject.com/en/4.1/ref/request-response/
>
> On Thu, 15 Sept 2022 at 16:55, Matheus Bon  wrote:
>
>> Hello guys!
>>
>> I'm using AJAX in my Django project, as soon as I finished writing the
>> code and went to test it, this error always pops up.
>>
>> The site runs normally, it's only when I send it that this happens.
>>
>> 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 on the web visit
>> https://groups.google.com/d/msgid/django-users/7e8fb2cc-337c-4532-9c54-ae9e2a28e877n%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/CAJN6x_h%2BfPaySJFGLOWKCYzkRiEn63LSqs32ee8S5Jajx0qxqw%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/CAJnMy6fUCjLqcY2ZWQJoXsCZXvoPAViOQKCLbrAV_o5c6VGo%2Bw%40mail.gmail.com.


Re: 'WSGIRequest' object has no attribute 'is_ajax'

2022-09-16 Thread subin
I will continue learning more about .

On Fri, Sep 16, 2022 at 2:06 PM Matheus Bon  wrote:

> I use the version 4.1
> I saw that after version 3.1 you have to implement a code to be able to use
> I did this and it worked, thanks dude!
>
> Em sex., 16 de set. de 2022 às 09:27, André Lewis 
> escreveu:
>
>> What version of Django are you using? If it's 4.1, I'm pretty sure it's
>> no longer supported.
>>
>> You can check the docs to confirm:
>> https://docs.djangoproject.com/en/4.1/ref/request-response/
>>
>> On Thu, 15 Sept 2022 at 16:55, Matheus Bon 
>> wrote:
>>
>>> Hello guys!
>>>
>>> I'm using AJAX in my Django project, as soon as I finished writing the
>>> code and went to test it, this error always pops up.
>>>
>>> The site runs normally, it's only when I send it that this happens.
>>>
>>> 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 on the web visit
>>> https://groups.google.com/d/msgid/django-users/7e8fb2cc-337c-4532-9c54-ae9e2a28e877n%40googlegroups.com
>>> 
>>> .
>>>
>> --
>> You received this message because you are subscribed to a topic in the
>> Google Groups "Django users" group.
>> To unsubscribe from this topic, visit
>> https://groups.google.com/d/topic/django-users/aRS-TVajURc/unsubscribe.
>> To unsubscribe from this group and all its topics, 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/CAJN6x_h%2BfPaySJFGLOWKCYzkRiEn63LSqs32ee8S5Jajx0qxqw%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/CAJAvtf6cFqkMfK3xixGrJ_ONE5_JTfisXzRjHtoo%3Dtc4rm0Cdw%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/CAJnMy6ewDG01AK3pQYfwPv9ES5CpvZAtpCvFJpXjOsbO8aemew%40mail.gmail.com.


Re: session related error

2022-09-16 Thread subin
Kindly notify me should you need any other information.

On Fri, Sep 16, 2022 at 3:40 PM shiva singh  wrote:

> Hi everyone
>
> anyone give solution for this problem:
> AttributeError: 'SessionStore' object has no attribute 'id'
> [16/Sep/2022 19:28:16] "POST /jobpostsubmit/ HTTP/1.1" 500 66025
>
> --
> 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/fa9dd634-a600-493d-9d34-d96af98e7740n%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/CAJnMy6dm3ej1WpTUXj69iQVrt1SxLNTcokgic4qCmDGQkape4Q%40mail.gmail.com.


Re: Bad Request 400 in Django

2022-09-01 Thread subin
I will look forward to meeting you on July 11

On Thu, Sep 1, 2022 at 4:14 PM Eric smith  wrote:

> I have some issues in running django server.
>
> System check identified no issues (0 silenced).
> September 01, 2022 - 10:58:47
> Django version 4.0.1, using settings 'project.settings'
> Starting development server at http://127.0.0.1:8000/
> Quit the server with CTRL-BREAK.
> [01/Sep/2022 10:58:57] "GET / HTTP/1.1" 400 143
> [01/Sep/2022 10:58:58] "GET /favicon.ico HTTP/1.1" 400 143
>
> Please help me if you are expert on it.
>
> --
> 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/7034243a-72ba-47bb-a5a3-6c1bcdec67aan%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/CAJnMy6f18fkS2%2BMThaestycUN-NKGh2m3TV%2BpUH9ogkwX2Li_g%40mail.gmail.com.


Re: ImportError: cannot import name 'employees' from 'rest_framework'

2022-09-01 Thread subin
Thanks again for the info.

On Thu, Sep 1, 2022 at 4:21 PM Ashish Rawat 
wrote:

> There is error in line number 3 you are importing the module from restapi
> but you should take that from model
>
> On Thu, Sep 1, 2022, 7:30 PM Pooja Kumari  wrote:
>
>> Can anyone explain 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/2920648e-f12c-4e26-a089-59a196fd653an%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/CAJf3Dr%2Bipj0t3zXoA3C1D-FF%3DCe0BvJH-Xd1OWneYF9e%2B1Pu%2Bg%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/CAJnMy6ePf1VWGFTJgXr4mEHbm78AJMC6PoWVB98zbQL_KpDoaQ%40mail.gmail.com.


Re: Bad Request 400 in Django

2022-09-01 Thread subin
Hi

On Thu, Sep 1, 2022 at 4:25 PM Lipede Tope  wrote:

> Check your code
>
> On Thu, Sep 1, 2022, 4:13 PM Eric smith  wrote:
>
>> I have some issues in running django server.
>>
>> System check identified no issues (0 silenced).
>> September 01, 2022 - 10:58:47
>> Django version 4.0.1, using settings 'project.settings'
>> Starting development server at http://127.0.0.1:8000/
>> Quit the server with CTRL-BREAK.
>> [01/Sep/2022 10:58:57] "GET / HTTP/1.1" 400 143
>> [01/Sep/2022 10:58:58] "GET /favicon.ico HTTP/1.1" 400 143
>>
>> Please help me if you are expert on it.
>>
>> --
>> 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/7034243a-72ba-47bb-a5a3-6c1bcdec67aan%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/CABp6AaB2JzWBbSyFvNYPwDFn96bx2f%3DKT-ScUUgNNGuHVOYQpg%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/CAJnMy6fxSb5P9VdJrYMJLV5%3Dx6AJ%2B9K1YaJffOja1%3DXoUmxK2A%40mail.gmail.com.


Re: Job -Fullstack python expert ( Django framework)

2022-08-18 Thread subin
Hello there

On Thu, Aug 18, 2022 at 9:39 PM Nazrul Islam 
wrote:

> I'm interested.
>
> On Fri, Aug 19, 2022, 1:58 AM Ali Moosavi  wrote:
>
>> I'm also interested.
>>
>> On Fri, Aug 19, 2022 at 12:22 AM Sympa Kalambay 
>> wrote:
>>
>>> I’m interested
>>>
>>> Le jeudi 18 août 2022, Each1Teach1  a
>>> écrit :
>>>
 This project is very straight to the point. We are building a micro
 service on top of Django framework. We currently have a virtual private
 cloud on DO and will like to migrate to AWS in the nearest future. This
 hosts our encryption SDK including authentication APIs and licensing
 mechanism.

 Our current stack is Django framework (major code in java) using python
 over the py4j bridge to call and run it. This consumed via API (RestFul).
 We recently added Springboot.

 What we want to accomplish:
 We really need the qualified person to be ready to hit the ground
 running with new ideas and able to train or teach other fullstack
 developers. We fully cloud based.
 1. Design and Build a micro service with clusters to address demand
 with licensing of our SDK orchestrated in a way that unauthorized cannot
 break to use it.
 2. Automate our licensing protocols as we release bearer tokens for the
 use of our algorithm
 3. Expand the API to include other functionality with 2 other companies
 4. Build a fetch request based on push from clients mobile and web
 application in which our encryption algo is already embedded.
 5. Integrate with eth staking for challenge where the actionable
 parameter e.g BMI could now be shared with data brokers n a secure and
 privacy preserving way.

 If you have the skills and believe that you are a good fit don't
 hesitate to reach me asap.
 We require that you will be available online e.g skype, whatsapp and as
 well as in our app for message..There could be a possible long term
 opportunity for the right candidate.

 There are many interesting projects.

 Be certain that you are a guru and can impart knowledge to others.

 Reach if you are interested.

 --
 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%2BGDpiShO%2BF%3DtF_eB12kt0DSbVRWKRJ-39KpBfPfB%2BHmfvofKg%40mail.gmail.com
 
 .

>>>
>>>
>>> --
>>> Sympa Kalambay
>>> Développeur Web
>>>
>>> --
>>> 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/CAPuDzScu4Mk7LD-WM-r-0y2zO%3DJfVfUV6DUNjV%2Btr1U31-WS%2BA%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/CAGGUeUN3%2B5MiriDytMyMiFdQon0nxBJCsBW4Hj_9yMEeyKKCBQ%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/CACqUFHYb2kv60DC48%2BxxCa3on3jdSY%3D2qVpOOP%2Bf4gB8g1qi3w%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/CAJnMy6cgg4OGvSYrgG_qD%3DgSNoO2XBf_Bmk-k6zCGu9cxsgGCA%40mail.gmail.com.


Re: page index.html

2022-08-18 Thread subin
Please let me know if that is okay.

On Thu, Aug 18, 2022 at 10:07 PM hajar Benjat  wrote:

> did you make it right (what about the urls.py and views.py )
>
> [image: width=]
> 
>  Sans
> virus.www.avast.com
> 
> <#m_8165340947414382264_DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>
>
> --
> 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/CAMcj6WdYMRVgsEgaPAf%3DAzxqBWyKph_biCSgNZ5r1QtR4g2%3D2Q%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/CAJnMy6eBAO1MgiyRU15woenMsGpQmYKdY4DHP%3DaP5PdEvt4RTQ%40mail.gmail.com.


Re: page index.html

2022-08-18 Thread subin
Sorry it took me so long to get back to you.

On Thu, Aug 18, 2022 at 10:16 PM hajar Benjat  wrote:

> for example this is your project name* 'firstproject'* and this is your
> app name *'firstapp'* in your template you will create a html page named
> *'index.html'* in your *'firstapp' views.py* you need to create a
> function for example :
>  def index(request):
> return render(request, 'index.html')
>
> in your *'firstapp'* *urls.py *you need something like this
> urlpatterns = [
>  path('',views.index,name="index"),
> ]
>
> and then in your 'firstproject' urls.py you need this
> from django.urls import path,include
> urlpatterns = [
> path('admin/', admin.site.urls),
> path('', include('firstapp.urls')),
> ]
>
>
>
> Le jeu. 18 août 2022 à 22:06, hajar Benjat  a
> écrit :
>
>> did you make it right (what about the urls.py and views.py )
>>
>> [image: width=]
>> 
>>  Sans
>> virus.www.avast.com
>> 
>> <#m_-1881626924999469383_m_-7430398450597033952_DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>
>>
>
>
> --
>
> *HAJAR BENJAT *
>
> - Specialized Master in Information Systems Engineering
>
> At CADI AYYAD UNIVERSITY *– *FSSM Marrakech
>
> - Computer Science Teacher
>
> *P:* +212698608188
>
> *E:* hajar.ben...@edu.uca.ma
>
> *LinkedIn: *https://www.linkedin.com/in/hajar-benjat-a92132106
>
> --
> 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/CAMcj6Wf3evMhypW%3DOChVi-nUXoDQRU%2BZB-AFLtyEfvh1JJVh6Q%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/CAJnMy6fpOPS12sJzxusXxNAYd2t67KqpR%2Bb71JZF2JQc1PZCYQ%40mail.gmail.com.


Re: Active Django Communities

2022-08-11 Thread subin
I will continue learning more about .

On Wed, Aug 10, 2022 at 6:47 PM Dieu merci Dramani <
dieumercidram...@gmail.com> wrote:

> You're welcom !
>
> Le mer. 10 août 2022 à 15:48, Abdullah Nafees 
> a écrit :
>
>> Hey all,
>>
>> I am a new Django and Django REST user. I was wondering what and how many
>> official user communities exist for Django as there is the Python Discord
>> server which is pretty active. Thank you.
>>
>>
>> --
>> 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/4a9a3cce-a310-498d-8651-d6dfe3cc8bb1n%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/CADDd42Y5jqUjHrP9VzhUr6O8YGTqByohS-22%2BizJnE-cXWi4Vw%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/CAJnMy6d3Ciwvq3b3ATGdtZqicsx2dhcdrx99Btsw65wDmAeuvA%40mail.gmail.com.


comment app with quote, like, etc

2012-07-23 Thread subin
Hi,
Is there django comment app with quote & like feature?
I have searching and found django-comments-xtd, django-threaded-comments,
and django-comment-apps. But none of them support 'like'.

Thanks

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.