Skip to content

Tag: django

Django – fresh database and no such table

I’m using my complex jobs app in production and it works fine, with sqlite database. I’m trying to create new database from scratch and I cannot do that nor using migrations nor trying to make them once again: When I’m trying to reuse my migrations: When I’ve tried to remove all migrat…

Django multiple params link

I have this urls.py first path with one args works good with reverse func in some file how i can do this -> from …/calendar/2020-01-01 to …/calendar/2020-01-01/100 in template without using context and 2 args like url ” ” date arg2 something like <a href = “{% url ‘sc…