Posts by Rodrigo Carvalho • 13 points
2 posts
-
0
votes1
answer295
viewsQ: def post(request): or request.method == POST?
I’m doubting the title above about the best development practices in Django/python. Example: class Exemplo(View): def get(self, request): pass def post(self, request): pass OR if request.method ==…
-
1
votes1
answer2061
viewsQ: Django: Modulenotfounderror: No module named
I have the following problem between two apps, in which I call a model from an app (app1) in a view from another app (app2) Projeto ├ APP1 └ APP2 View from APP2: from projeto.app1.models import…