Posts by Rafael Morán • 1 point
3 posts
-
0
votes2
answers112
viewsA: Rest framework Django
To have something more complete and complex, as you said, you need to create a Manytomanyfield field in your Model. Example: from django.db import models from configuracoes.models import…
-
0
votes1
answer66
viewsA: (Django) Send form to another table
I see no sense in the implementation of the Sala1, Sala2 and Sala3 classes, which is the same model as the Request class. I didn’t quite understand the purpose of your system, but regardless of…
djangoanswered Rafael Morán 1 -
0
votes2
answers129
viewsA: How to delete a json object with python?
I would do it this way: excluir_funcionrio = input('quem você quer excluir: ') print('Tem certeza?') print('1 - continuar') print('2 - voltar') if opção_adquirida == 1: for funcionario in…