Posts by Marciano Abel Abel • 11 points
3 posts
-
0
votes1
answer20
viewsQ: Migrations from my Django app are not applied
I created the models.py file in my app, created all the models, added appConfig to INSTALLED_APPS but when I use the manage.py migrate myapp it does not make any changes to the mysql database: Can…
-
-1
votes1
answer21
viewsQ: How to pass "invisible" variables from one page to another using a link in Django?
Suppose I have the following code in the.py urls; url(r'^relatorio', views.relatorioView, name='relatorio'), url(r'^relatorio/grafico', views.graph, name='grafico'), On the report page I have a…
-
0
votes1
answer69
viewsQ: What is git send-email for?
I’m needing to use git send-email to send an exercise via email, but I couldn’t understand the purpose of this command in git. Can I send the repository with the files via email? How it works?…