Posts by Marcelo Gouveia • 3 points
3 posts
-
0
votes2
answers432
viewsA: Set select search text in html
Well, from what I’ve seen you can use a solution called Select2. include the following stylesheet in your html’s HEAD: <link…
-
0
votes1
answer658
viewsA: Render JSON data received from an API in an HTML/Django Table
Come on, from what I saw you just want to check results, then the request would be a GET and not a POST as you put: response = requests.post(url, auth=HTTPBasicAuth('123456', 'password1234'),…
-
0
votes1
answer1038
viewsQ: Relationship Django Models
I have a model called Item and made a call Compra. I was able to relate several items with each purchase, but I don’t know how to relate the quantity of each item in each purchase. class…