Posts by Gabriel Furlan Rebessi • 56 points
3 posts
-
2
votes1
answer110
viewsA: Regex words in lowercase
Regex does not modify the text, it just identifies the text. In this case you are identifying the text and replacing it with empty, keeping the original text box. As the text has already been found…
-
0
votes1
answer309
viewsA: How to view my index.html template in the Django restframework?
The default to include urls in Django has changed in version 2.0 No longer used the url, and yes the path. With this change, regex is no longer used to define a url (at least not with path).…
-
2
votes1
answer96
viewsA: Creating Energy log table for several Django models
I recommend using Lib Django Activity Stream. It is possible to create logs dynamically, with specific information about actor, action and target of the action.…