Re: INPUT TEXT in grid

2021-10-03 Thread Adeyemi Deji
Good to know that you now understand why ur code wasn't working and you have learnt from asking questions. We always here for you. Peace On Sun, Oct 3, 2021, 1:44 AM Gabriel Araya Garcia < gabrielaraya2...@gmail.com> wrote: > Thanks for your help, My problem I've solved. David Nugent says that

Where are you deploying Django App? How much does it cost for a hobby project

2021-10-03 Thread Avi Mehenwal
Hello! I am building a prototype Django app and would like to deploy it so that people can use it. What would be the most cost-effective and cheapest deployment solution to host a django backend? How much would it cost? Any ideas, help is most welcomed and appretiated -- You received this

Re: New to Django

2021-10-03 Thread bnmng
I think you'll get a few opinions on this. My opinion is no. I feel the docs are very good but difficult to understand as a beginner. I like Mozilla's into with the Local Library tutorial to get started https://developer.mozilla.org/en-US/docs/Learn/Server-side/Django On Friday, October 1,

Reverse look fails when importing from the admin for an app

2021-10-03 Thread Derek
My pytest suite is currently not working, as the reverse lookup is failing for admin views; for example, trying to access `reverse('admin:myapp_mymodel_changelist')` or `reverse_lazy('admin:myapp_mymodel_changelist')`. I have narrowed down the cause to the trigger being *any* kind of import being

Re: List Index out of Range

2021-10-03 Thread Lalit Suthar
Adding to above 2 answers index error may also occur when your time_frame_list or responsible_list does not have the same number of items as your input_list. You should try bnmng' s answer also > Which line in your code is triggering the error? you check it with simple print statements or using a

Proper way to create custom Group

2021-10-03 Thread Scot Hacker
It is possible to create a custom Group model in Django, although there is no `settings.AUTH_GROUPS_MODEL` equivalent to `AUTH_USER_MODEL`. When creating a custom Group system one can either inherit from the Django's `Group` model, or not. If you do, you still can use `user.groups.all()`. If