Re: POS Printer

2022-05-31 Thread Mike Dewhirst
Paul I agree with @Dev. Nice. And generous. I'm saving this email into my 'keep'. Cheers Mike On 1/06/2022 3:22 am, Paul Kudla (SCOM.CA Internet Services Inc.) wrote: ok a few zillion requirements You need something that will generate a pdf file and then send it to a printer / email etc

Deploy Tailwind Template with Django

2022-05-31 Thread Ry
Hi I recently downloaded a template from cruip.com https://preview.cruip.com/mosaic/ I'd like to integrate this template into my django site but admittedly I am not sure where to begin. Does anyone have experience using templates such as the dashboard above on django? In the end, I'd like to de

Re: POS Printer

2022-05-31 Thread Dev femibadmus
Nice On Tue, May 31, 2022 at 6:23 PM Paul Kudla (SCOM.CA Internet Services Inc.) wrote: > > ok a few zillion requirements > > You need something that will generate a pdf file and then send it to a > printer / email etc > > Basically Pillow libs needs to be installed to generate a pdf file > > fr

Re: Django email | Gmail | Outlook

2022-05-31 Thread Dev femibadmus
i have solved my issue using the gmailapi anyone having same issue?? On Mon, May 30, 2022 at 2:57 PM Dev femibadmus wrote: > Wow 😲 thanks 🙏 so much Paul > > On Mon, May 30, 2022, 13:40 Paul Kudla (SCOM.CA Internet Services Inc.) < > p...@scom.ca> wrote: > >> >> Unfortunately gmail / outlook alt

ComboBox

2022-05-31 Thread Phil Parkin
Hi all I am converting a desktop application to Django web application. The desktop app uses comboboxes (editable dropdown/select). Is their any elegant way of applying the same functionality in Django? Stack Overflow etc. all seem to be about dropdown select lists only. I can see ways of doin

Re: POS Printer

2022-05-31 Thread Paul Kudla (SCOM.CA Internet Services Inc.)
ok a few zillion requirements You need something that will generate a pdf file and then send it to a printer / email etc Basically Pillow libs needs to be installed to generate a pdf file from there is is system dependant if running linux / freebsd then i would write the pdf file into the

POS Printer

2022-05-31 Thread Asif Foysal
How to use POS printer in Django -- 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

Re: Negated filtering by lookup expression sent via url query

2022-05-31 Thread Lalit Suthar
you can write custom filtering classes and methods using Django filters. There you can define fields and methods according to your use case example: https://stackoverflow.com/questions/43009538/use-custom-filter-with-django-modelchoice-filter On Tue, 31 May 2022 at 19:16, Sencer Hamarat wrote: >

Negated filtering by lookup expression sent via url query

2022-05-31 Thread Sencer Hamarat
Hi, Is there any way to negate filtering with the django-filter package which lookup expression sent via url query, such as: http://example.com/?name__not_contains=john The request above has to be passed through the django filterset class and the class has to be returned with the queryset exclu

Re: Auto Template Update

2022-05-31 Thread Ryan Nowakowski
There's a couple of ways to update the UI without the user doing anything. First, you can poll the server at a regular interval using JavaScript. Second, you can use a websocket to push updates from the server to the client. On May 30, 2022 6:28:40 AM CDT, Dev femibadmus wrote: >fine! we can su