Re: Django admin application for Android

2019-07-21 Thread Jens-Joris Decorte
Hi Alexandre, the app is written in Kotlin. Looked for using flutter but the webview support is not quite there yet.. Op woensdag 17 juli 2019 17:26:04 UTC+2 schreef Alexandre Guignard: > > That's cool, thanks 😉 > Which langage do You use for the app ? -- You received this message because you

Re: Django admin application for Android

2019-07-21 Thread Jens-Joris Decorte
Hi Derek, The GOLD plan is for users who want to manage multiple projects. On top of that they get some other benefits like using shortcuts and rearranging the order of the models. This is $0.99 per month as a way to support my development :-) Kind regards Op woensdag 17 juli 2019 08:11:56 UTC

Re: Django admin application for Android

2019-07-21 Thread Jens-Joris Decorte
Hi Derek, The GOLD plan is for users who want to manage multiple projects. On top of that they get some other benefits like using shortcuts and rearranging the order of the models. This is $0.99 per month as a way to support my development :-) Kind regards Op woensdag 17 juli 2019 08:11:56 UTC

Re: Django admin application for Android

2019-07-21 Thread Jens-Joris Decorte
Hi Derek, The GOLD plan is for users who want to manage multiple projects. On top of that they get some other benefits like using shortcuts and rearranging the order of the models. This is $0.99 per month as a way to support my development :-) Kind regards Op woensdag 17 juli 2019 08:11:56 UTC

Re: NotImplemented error combining distinct with annotate

2019-07-21 Thread Simon Charette
Assuming you have a model definition `Salesperson` you could use Salesperson.object.annotate( sales_amount=Sum('sales__sales_amount'), ) But given you mentioned 'salesperson' is a text field you can do persons = Sales.objects.values('salesperson').annotate( sum_sales_amount=Sum('sales_am

NotImplemented error combining distinct with annotate

2019-07-21 Thread John Gateley
Hello, Python version: Python 3.7.2 Django version: 2.2.3 I want to combine distinct and annotate(Sum(...)), and get the following error: NotImplementedError: annotate() + distinct(fields) is not implemented. To describe: I have a bunch of sales entries like: 'John', 100 'Sam', 50 'John', 200 (t

Re: Usar confirmacion de correo para crear un nuevo usuario ?? ayuda!!! soy nuevo en este framework

2019-07-21 Thread carlos
Hola, este es el grupo de usuario de django en ingles, existe un grupo para español django...@googlegroups.com. y para responderte a tu pregunta puedes usar una app de terceros llamada django-allauth https://django-allauth.readthedocs.io/en/latest/ ahi en la documentación sale toda la información q

Re: how to convert django application to Windows exe format

2019-07-21 Thread Jonathan May
Pip install pyinstaller and then run “pyinstaller — onefile filename.py” On Sun, Jul 21, 2019 at 6:01 PM Jonathan May wrote: > You can use pyinstaller to convert your py file to exe > > On Sun, Jul 21, 2019 at 5:57 PM Mike Dewhirst > wrote: > >> Try searching for python to exe >> >> >> *Connect

Re: how to convert django application to Windows exe format

2019-07-21 Thread Jonathan May
You can use pyinstaller to convert your py file to exe On Sun, Jul 21, 2019 at 5:57 PM Mike Dewhirst wrote: > Try searching for python to exe > > > *Connected by Motorola* > > > Balaji Shetty wrote: > > Hi > > Can anyone please tell me > how to convert django application to Windows exe format.

Re: how to convert django application to Windows exe format

2019-07-21 Thread Mike Dewhirst
Try searching for python to exe Connected by Motorola Balaji Shetty wrote: >Hi > > >Can anyone please tell me  > >how to convert django application to Windows exe format. > >-- >You received this message because you are subscribed to the Google Groups >"Django users" group. >To unsubscribe f

Re: M2M relationship not behaving as I would expect

2019-07-21 Thread Mike Dewhirst
You can constrain uniqueness in the through table and/or the other tables to represent whatever real-world constraints you need. Otherwise you can have as many duplicated relationships as you want. Each through record has its own id so the database is happy no matter how many go in. Connected

how to convert django application to Windows exe format

2019-07-21 Thread Balaji Shetty
Hi Can anyone please tell me how to convert django application to Windows exe format. -- 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...@g

M2M relationship not behaving as I would expect

2019-07-21 Thread Don Baldwin
Hi, I have a many-to-many relationship between users and things, where a user can select multiple things, and a thing can be selected by multiple users. The relationship between users and things also contains data, so I've specifically setup a through table. When I add a user to a thing, I guess