can't find index

2020-07-17 Thread Exactly musty
Look at the error closely, as it says it all, in your project url django cant find the path index,its a url problem, check it if you got it well spelt -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop

Re: Django rest framework saas project

2020-07-17 Thread Sunday Iyanu Ajayi
make use of django usergroups *AJAYI Sunday * (+234) 806 771 5394 *sunnexaj...@gmail.com * On Tue, Jul 14, 2020 at 5:15 PM Raghavendra AK wrote: > Users must be able to… > > 1. signup. A Company should be created. > 2. create other users in the same company. > 3. see a list of users from the

Re: Looking For Django Developer for 2-3months(paid accordingly)

2020-07-17 Thread Budi Hermansyah
On Sat, 18 Jul 2020 at 06.02 Sai wrote: > Hi Djangonauts, > I am looking for Django Developer who has excellent Experience(3years > minimum) in the following. > These are Must have: > 1)Django Rest Framework > 2) Writing Unit Tests > 3) OAuth2 Token Authentication > 4) Creating Rest API using

Looking For Django Developer for 2-3months(paid accordingly)

2020-07-17 Thread Sai
Hi Djangonauts, I am looking for Django Developer who has excellent Experience(3years minimum) in the following. These are Must have: 1)Django Rest Framework 2) Writing Unit Tests 3) OAuth2 Token Authentication 4) Creating Rest API using functions These are the main tasks, the requirement

Re: can't find index

2020-07-17 Thread Kelvin Sajere
The error is as it is.. Django can't find a path /index On Fri, Jul 17, 2020, 10:22 PM Ralph Barhydt wrote: > > I have done the first part of the tutorial many times and suddenly, doing > it one more time, I get this message. I am in the right directory and I > have checked the code in urls.py

can't find index

2020-07-17 Thread Ralph Barhydt
I have done the first part of the tutorial many times and suddenly, doing it one more time, I get this message. I am in the right directory and I have checked the code in urls.py many time as well. What is going on? ``` Page not found (404) Request Method: GET Request URL:

Facet search in Django application

2020-07-17 Thread penumatv
Hi All, I am developing a job list and search type of web application where my requirement is to enable facet searches like Amazon or Myntra. Are there any delivered/external python packages that can be used to achieve this? I also started reading about Apache Solr. Anybody has used any

Re: help been on that for 5 days, Joining 4 tables on 2 columns

2020-07-17 Thread Integr@te System
Hi Omar, You can look at this to consider: https://hakibenita.com/django-group-by-sql Hope this helpful. On Sat, Jul 18, 2020, 12:32 AM Omar aboul makarem < omaraboulmaka...@gmail.com> wrote: > > Hey Guys please help > > I have Approval model, and i want to calculate the sum of total prices

Re: ModelSelect2 field doesn't appear

2020-07-17 Thread Luciano Martins
Must be missing the jquery that has to come before select2's js Em sexta-feira, 17 de julho de 2020 10:57:22 UTC-3, Nathan Duy Le escreveu: > > Hi all! > I've been losing hair trying to figure out why a ModelSelect2 field works > on one ModelForm but not the other almost identical one. Please

help been on that for 5 days, Joining 4 tables on 2 columns

2020-07-17 Thread Omar aboul makarem
Hey Guys please help I have Approval model, and i want to calculate the sum of total prices of the procedures based on the company and procedure type in each Approval *https://www.ppaste.org/pwhJ6u7Dg*

ModelSelect2 field doesn't appear

2020-07-17 Thread Nathan Duy Le
Hi all! I've been losing hair trying to figure out why a ModelSelect2 field works on one ModelForm but not the other almost identical one. Please save me from going mad! In the browser's console, I'm getting the error message: jQuery.Deferred exception: $(...).select2 is not a function

Re: How to save images posted by application users

2020-07-17 Thread Mottaz Hegaze
Try to use subfolder in media, upload_to='/images' On Fri, 17 Jul 2020, 7:18 am Exactly musty, wrote: > I also had the same problem long time ago I remember i felt like hanging > myself,here is what I did, i deleted the media folder,created by django, > try this if it will work > > -- > You

Re: How to provide background image via url() in django

2020-07-17 Thread sunday honesty
Thanks all... @Sujara own worked for me On Fri, Jul 17, 2020, 6:07 AM Sujata Aghor wrote: > I set background image like below in the style tag of the html page. It > works ! > > >body{ > background: url({% static 'users/img/bg/name_of _image.png'%}) > no-repeat center center fixed; >