Most voted "django3" questions
3 questions
Sort by count of
-
1
votes1
answer51
viewsPerform the action of a form without updating the page on Django
I am developing a project where I need to add members to a group, for this, I go through all registered members and present them in my html template. Each member has next to the "add" button only…
-
0
votes0
answers15
viewsHow to view the value of a selector in Django’s Forms.py?
I have a field that must be validated from a selector that is a foreign key in the model. py.models class NyModel1(models.Model): field1 = models.CharField(max_length=50) description =…
-
-1
votes1
answer34
viewsRender JSON Django field
I am doing a project using Django 3.1.2, this project needs a log. I created a template for logs: class Log(models.Model): Usuario = models.CharField('Usuário que fez a ação', max_length=100) Perfil…