Posts by Danilo Marto de Carvalho • 66 points
4 posts
-
0
votes1
answer61
viewsQ: How to pass parameters to a Makefile
I’m developing a Django app on Docker and not have to keep typing docker-compose exec djangoapp python manage.py <alguma coisa> i wrote a Makefile to run the commands I most use. I just don’t…
-
4
votes3
answers576
viewsA: What is CSS OK?
It’s a CSS architecture developed by a Russian who works or worked on the Yandex search engine. The official website is this https://en.bem.info/ According to this architect, you can organize your…
-
-1
votes1
answer76
viewsQ: How do I create a Slug automatically from the title of an item created with a Django form
Like the line prepopulated_fields = {'slug': ('name',)} you can generate the Slug of an object automatically just by typing its name in the admin panel. I wanted to do this also when the object is…
-
-2
votes1
answer119
viewsQ: Why am I getting this error "Operationalerror at /admin/core/comment"?
When I try to access the Commnets field in my admin area I get this error. Why? OperationalError at /admin/core/comment/ no such column: core_comment.content Request Method: GET Request URL:…