i new in django how to  show categorys product in templates , from
views in templates

anyone

2023-01-19 14:01 UTC+01:00, [email protected]
<[email protected]>:
> =============================================================================
> Today's topic summary
> =============================================================================
>
> Group: [email protected]
> Url:
>
> https://groups.google.com/forum/?utm_source=digest&utm_medium=email#!forum/django-users/topics
>
>
>   - Please i need help in creating a Login page with Django [2 Updates]
>     http://groups.google.com/group/django-users/t/ec5d94932dcb5e05
>   - thena.thenadaka.com [1 Update]
>     http://groups.google.com/group/django-users/t/ed97a2b721fb9928
>   - save() method not working in shell. What are possible causes? [2
> Updates]
>     http://groups.google.com/group/django-users/t/1fe591fc862f3584
>   - configuration [1 Update]
>     http://groups.google.com/group/django-users/t/c2dc0a80f9eeb51f
>   - How to fetch 10000 above record within second in django? [1 Update]
>     http://groups.google.com/group/django-users/t/81326751a2a9ece0
>   - Admin validation activated just once after final call to save_model() [1
> Update]
>     http://groups.google.com/group/django-users/t/6a50371c45ac7f4e
>
>
> =============================================================================
> Topic: Please i need help in creating a Login page with Django
> Url: http://groups.google.com/group/django-users/t/ec5d94932dcb5e05
> =============================================================================
>
> ---------- 1 of 2 ----------
> From: "Michael R. KOOMSON" <[email protected]>
> Date: Jan 18 08:12AM -0800
> Url: http://groups.google.com/group/django-users/msg/8873c1411ff5a
>
> I am trying everything possible to create a basic login page with Django.,
> i have tried so many videos and online tutorial, but still can't make
> anything meaningful out of it. Can anyone please take me through a
> systematic process please, since i am new here and want to take Django to
> be my friend
>
>
> ---------- 2 of 2 ----------
> From: Hubert Kanyamahanga <[email protected]>
> Date: Jan 19 03:06AM -0800
> Url: http://groups.google.com/group/django-users/msg/8af0f55a7dd29
>
> Please share what you have been able to do, where you are blocked and from
> there we can guide you, because, we don't even know which videos you have
> been viewing!
>
> On Wednesday, January 18, 2023 at 11:56:45 PM UTC+1 [email protected]
> wrote:
>
>
>
>
> =============================================================================
> Topic: thena.thenadaka.com
> Url: http://groups.google.com/group/django-users/t/ed97a2b721fb9928
> =============================================================================
>
> ---------- 1 of 1 ----------
> From: Namanya Daniel <[email protected]>
> Date: Jan 19 12:15AM -0800
> Url: http://groups.google.com/group/django-users/msg/8a5bb48015a5f
>
> Hello esteemed members,
>
> I hope all is well. I am reaching out to you today to invite you to check
> out thena.thenadaka.com and give me your honest opinions and guidance.
>
> Is it a good idea for portifolio building, i believe this is important to
> know most especially to us looking for jobs..
>
> Thanks in advance
>
>
>
> =============================================================================
> Topic: save() method not working in shell. What are possible causes?
> Url: http://groups.google.com/group/django-users/t/1fe591fc862f3584
> =============================================================================
>
> ---------- 1 of 2 ----------
> From: "Artur Rączka" <[email protected]>
> Date: Jan 18 01:25PM -0800
> Url: http://groups.google.com/group/django-users/msg/8873c52a36d03
>
> Hello guys,
>
> What am I missing or doing wrong?
>
>>>> dublin.price
> 40
>>>> dublin.price = 100
>>>> dublin.price
> 100
>>>> dublin.save()
>>>> dublin.price
> 40
>
>
> ---------- 2 of 2 ----------
> From: "Artur Rączka" <[email protected]>
> Date: Jan 19 09:02AM +0100
> Url: http://groups.google.com/group/django-users/msg/8a51774ff300c
>
> Ok. I solved the problem myself. The pre_save signal was changing my output
> every time I used save() method.
>
>
> W dniu śr., 18.01.2023 o 23:56 Artur Rączka <[email protected]>
> napisał(a):
>
>
>
>
> =============================================================================
> Topic: configuration
> Url: http://groups.google.com/group/django-users/t/c2dc0a80f9eeb51f
> =============================================================================
>
> ---------- 1 of 1 ----------
> From: frank dilorenzo <[email protected]>
> Date: Jan 18 01:11PM -0800
> Url: http://groups.google.com/group/django-users/msg/8873cbd078fb8
>
> I cannot seem to resolve this configuration correctly.
>
> I have a list of suppliers.
> A supplier can have one profile
> A supplier can have many shipments.
> A shipment can have many species
>
> I have tried several ways and I always end up with some kind of circular
> problem.
> Any thoughts are appreciated.
>
>
>
> =============================================================================
> Topic: How to fetch 10000 above record within second in django?
> Url: http://groups.google.com/group/django-users/t/81326751a2a9ece0
> =============================================================================
>
> ---------- 1 of 1 ----------
> From: Jason <[email protected]>
> Date: Jan 18 10:13AM -0800
> Url: http://groups.google.com/group/django-users/msg/877c9ff821690
>
> https://dev.mysql.com/doc/refman/8.0/en/using-explain.html is a good guide
> to showing how to use EXPLAIN to see what your query is running.
>
> https://use-the-index-luke.com/ is a great introductory source for indexes
>
> https://django-debug-toolbar.readthedocs.io/en/latest/ added to your
> project can show where your bottlenecks are.
>
> On Tuesday, January 17, 2023 at 10:40:27 AM UTC-5 Clive Bruton wrote:
>
>
>
>
> =============================================================================
> Topic: Admin validation activated just once after final call to
> save_model()
> Url: http://groups.google.com/group/django-users/t/6a50371c45ac7f4e
> =============================================================================
>
> ---------- 1 of 1 ----------
> From: David Wallace <[email protected]>
> Date: Jan 18 09:14AM -0800
> Url: http://groups.google.com/group/django-users/msg/87492bf5849bf
>
> Thanks Ryan for this comprehensive info. Looking at option 2 (and maybe 3
> as well) initially. But nice to know about option 1 as well, which I may
> adopt in a longer term.
>
> On Sunday, 15 January 2023 at 20:50:28 UTC Ryan Nowakowski wrote:
>
>
>
>
>
>
>
> --
> You received this digest because you're subscribed to updates for this
> group. You can change your settings on the group membership page:
>
> https://groups.google.com/forum/?utm_source=digest&utm_medium=email#!forum/django-users/join
> .
> To unsubscribe from this group and stop receiving emails from it send an
> email to [email protected].
>
>

-- 
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 [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAEixLa7ksRkSDsMotfrongEZ7NjoEbrR%2B2Aj3gYG7Y_7pBOuXg%40mail.gmail.com.

Reply via email to