Re: Django 2.2.6 fails to serve some static files in Windows 10

2019-10-03 Thread red sky
Thank you, to Ajjet and Desh. That solution doesn't work. I keep getting the error: [03/Oct/2019 23:08:39] "GET /static/css/styles.css HTTP/1.1" 404 1767 If I request the file "manually" (http://127.0.0.1:8000/static/css/styles.css), I still get the error. El jueves, 3 de octubre de 2019, 7:

Re: TemplateDoesNotExist

2019-10-03 Thread saeed albooyeh
hi you can see the template-loader postmortem part of the error page that you uploaded there is a list of paths that django expects to find your templates due to your settings file in the settings file you can see the TEMPLATES list and find out where you should place your templates for examp

id the field is required - error in Django formset

2019-10-03 Thread madhusona
I am using django 2.2. My models are class Group(models.Model): group_name = models.CharField(max_length=100) def __str__(self): return self.group_nameclass Category(models.Model): category_name = models.CharField(max_length=50) def __str__(self): return self.catego

Multi user blog

2019-10-03 Thread Ankita Gupta
I have tried wagtail-cms but I don't know how to add multiple users and heirarichal approach in that. -- 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-us

Re: TemplateDoesNotExist

2019-10-03 Thread Tosin Ayoola
Did you set your template folder correctly in your setting file and in your view are you pointing to the right directory where your .html is located? On Oct 3, 2019 08:18, "yerri swamy" wrote: I tried like this testapp>template>base.html but also its showing same issue please help me anyone.. vi

Re: TemplateDoesNotExist

2019-10-03 Thread Ehab Al-Qabbani
Hi, Add new folder with the application name under the template folder i.e "testapp/templates/testapp" And move your template files into new folder, Then, when you call the template: If the template in the same place of the view.py (application space) call it without the full path i.e "base.html

Multi user blog

2019-10-03 Thread Ankita Gupta
Does anyone know of a good project mad din django with following requirements.? Requirements- Multiple user can post daily blogs. Heirarichal (multi level) users like college level system where users have different destinations, be it student, mentor, Dean etc. Weekly report management system f

Multi user blog

2019-10-03 Thread Ankita Gupta
Please ignore auto correct errors. -- 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: I want to know about how to implement elastic search in the python django

2019-10-03 Thread sachinbg sachin
It is an oldest version not supporting for 3.6.8 python version On Wed, Oct 2, 2019, 8:51 PM Sithembewena L. Dube wrote: > https://www.youtube.com/watch?v=cXYVE28igkE > > Kind regards, > Sithembewena > > > *Sent with Shift >

Re: Entire Application in Django shuts down with single error

2019-10-03 Thread Mike Dewhirst
On 3/10/2019 5:03 pm, Amit Sharma wrote: Hi , I agree with your point and i do follow same. But what my main concern here is :-- Can we have in django that if one page has got some error than other pageĀ  do not stop working. This was only thing i want to know. Kindly help. It is quite reas

Re: TemplateDoesNotExist

2019-10-03 Thread yerri swamy
I tried like this testapp>template>base.html but also its showing same issue please help me anyone.. views.py 1. from django.shortcuts import render 2. 3. # Create your views here. 4. def hello_world(request): 5. 1. return render(request,'testap

Re: Entire Application in Django shuts down with single error

2019-10-03 Thread Amit Sharma
Hi , I agree with your point and i do follow same. But what my main concern here is :-- Can we have in django that if one page has got some error than other page do not stop working. This was only thing i want to know. Kindly help. On Wednesday, October 2, 2019 at 1:19:49 PM UTC+5:30, Andr