Posts by Álvaro Antônio • 56 points
3 posts
-
1
votes2
answers274
viewsA: Limit Simultaneous Access in Django
I came back to tell you how I solved my problem. Being new still in Django I had to solve my way and following the tips that were given to me in this forum. WHAT I DID Knowing the user’s email I got…
-
1
votes1
answer36
viewsA: Check if number already contains in row and column
Check if the number already exists in the list before adding, so you avoid it repeating itself. And using the while causes it to repeat until it fills the list. Source of the code: Link result = []…
pythonanswered Álvaro Antônio 56 -
1
votes2
answers274
viewsQ: Limit Simultaneous Access in Django
I wonder if there is any native way of the Djang framework itself to limit the amount of screens per user, I have researched about and can’t find anything to answer that. I want to prevent a user…