Can't access DjangoConEU Slack channel

2022-03-14 Thread Sammeeey
In the announcement on the Django Project website they link to the DjangoConEU Slack Channel . Unfortunately I cannot join. If I try to login with my google account it says s

Re: xlsx file data pasing into array to pgadmin using python

2022-03-14 Thread Kasper Laudrup
On 14/03/2022 06.19, Gopi Bodduluri wrote: database function how to write data saave into table in array data Yes, but maybe no. Definitely maybe though. Kind regards, Kasper Laudrup -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsub

Re: Deploy django to Windows server

2022-03-14 Thread Kasper Laudrup
On 14/03/2022 16.26, www.forum-gh.com wrote: hey guys, Please I want to deploy my django app on Windows Server with a public IP, I don't know how to go about it please someone should guide me to do this https://lmgtfy.app/?q=deploy+django+windows+server Kind regards, Kasper Laudrup -- You r

Deploy django to Windows server

2022-03-14 Thread www.forum-gh.com
hey guys, Please I want to deploy my django app on Windows Server with a public IP, I don't know how to go about it please someone should guide me to do this -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop

no data returned with filter

2022-03-14 Thread frank dilorenzo
models.py: from django.db import models from specie.models import Specie from supplier.models import Supplier class Shipment(models.Model): supplier = models.ForeignKey( Supplier, null=True, on_delete=models.DO_NOTHING) created = models.DateTimeField(auto_now_add=True) label = models.CharField(m

xlsx file data pasing into array to pgadmin using python

2022-03-14 Thread Gopi Bodduluri
database function how to write data saave into table in array data -- 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

Re: How to add object to users unique list?

2022-03-14 Thread Joel Tanko
What do you mean by click of a button? Are you using Ajax or a frontend framework? You most likely aren't handling the post request on the view that's supposed to add the anime to the user's list On Tue, Mar 1, 2022, 10:20 AM raf sandwich Hi Antonis, > > Yes I saw that stackoverflow post also,

Re: Django, Docker & SaaS Multi-Tenant Architecture

2022-03-14 Thread Joel Tanko
This is a micro service issue, you should use webhooks to notify your main Django app with the one you're building, that way you'll know when something happens and can handle that event. On Sun, Mar 6, 2022, 4:24 PM 炉边史话 great job! > > 在2022年1月15日星期六 UTC+8 00:56:12 写道: > >> >> A official discord

Re: How to create dynamic models in django??

2022-03-14 Thread Joel Tanko
If I understand correctly you're trying to give the user the power to create tables from the front end by saving his params to the database and using that data to create a table in another or the same database, I tried doing the same with forms here's a tweak, hope it's what you're looking for or

django top 2

2022-03-14 Thread divya murugulla
Hi, Can anyone help to get the query result for top 2nd row in django with annotate max as shown below. I got max and in that top row now i need to get max of second row. Please help qs=CommodityDestination.objects.select_related('commodity_price', 'commodity_price__cmdty_uom','commodity_pric

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 Oku