System Check Error

2021-03-18 Thread Noyon Barman
What's the Problem? How do I solve it, anyone please suggest to me -- 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

Re: System Check Error

2021-03-18 Thread ule...@gmail.com
Hi, There is a problem with ordering of field Comment in your model .py within App_Blog Please show me your models.py . Op donderdag 18 maart 2021 om 21:20:01 UTC+1 schreef noyonba...@gmail.com: > What's the Problem? How do I solve it, anyone please suggest to me > -- You received this messag

Re: System Check Error

2021-03-18 Thread ule...@gmail.com
in models.py in Class Blog try with Class Meta: ordering = ['publish_date'] for Class Comment try with Class Meta: ordering = ['comment_date'] Op donderdag 18 maart 2021 om 21:43:19 UTC+1 schreef noyonba...@gmail.com: > >1. I am so thankful for what you did > > > On Fri, Mar

Re: System Check Error

2021-03-18 Thread Fiifi Pius
Don't mix your field ordering of list with tuple. It should be in a list [fieldname] On Thu, Mar 18, 2021, 9:51 PM ule...@gmail.com wrote: > in models.py in Class Blog try with > Class Meta: > ordering = ['publish_date'] > > for Class Comment try with > Class Meta: > ordering = [