Django: TemplateSyntaxError: Could not parse the remainder

前端 未结 6 1382
深忆病人
深忆病人 2020-12-15 02:22

I am getting this issue when I type localhost:8000/admin/.

`TemplateSyntaxError: Could not parse the remainder: \':password_change\' from

6条回答
  •  情歌与酒
    2020-12-15 03:23

    Template Syntax Error: is due to many reasons one of them is {{ post.date_posted|date: "F d, Y" }} is the space between colon(:) and quote (") if u remove the space then it work like this ..... {{ post.date_posted|date:"F d, Y" }}

提交回复
热议问题