Posts by Humberto • 1 point
2 posts
-
0
votes1
answer29
viewsA: Questions about Relational Models in Django
It will depend on how the relationships between your models are structured, to compare if the user is the same who made the post you need to compare the request user with the linked post. By your…
-
0
votes1
answer40
viewsA: Customizing link in an html email
Just add the following rule to your html’s css: a:hover { // aqui vai a customização desejada } Editing: There is no way to apply this inline rule, but for email html cases that all need to be in…