Posts by at8819 • 27 points
6 posts
-
0
votes1
answer207
viewsQ: How to use the Django admin template non my form
I’m learning about Django’s admin site and my question is: I have a modelForm and one of the fields is a foreignKey and would like the change, Edit and delete options as in the Django template (that…
-
0
votes1
answer110
viewsQ: Form label is not shown on the #Django page
I created a customer registration form and in the meta class I declared the Fields and their respective Abels. However the label 'CPF' referring to the field 'n_cpf' does not show on the page, only…
-
0
votes1
answer207
viewsQ: Noreversematch at /view_clients/
I want to print out a simple customer sheet inside a list of customers I’ve registered in the app. When I click on the link to generate me returns this error: Noreversematch at /view_clients/…
-
0
votes1
answer39
viewsQ: Using a Math function in Vue 2 framework
I’m developing an api on Vue.js that has a button to calculate the power of a certain number. But when I click the button it becomes static, nothing changes. You have to make some change in the…
-
0
votes1
answer246
viewsQ: mailto attribute does not open
I’m using the html tag for email link: <a href ="mailto:[email protected]">Entre em contato</a> But it just won’t open, nothing happens. My OS is Windows 7 Ultimate 32bits Email server…
-
0
votes0
answers47
viewsQ: Problem with flag or string?
In this simple code the program should exit the loop when I type the word quit. msg = 'Que lugar gostaria de visitar?' active = True while active == True: Here the input is assigned to place and…