SELECT * FROM posts WHERE tag = 'gettext'
Stop using underscore as alias for gettext
I've been using Django for a while now, and I've seen a lot of people using the underscore as an alias for gettext. from django.utils.translation import gettext as _ and also from django.utils.translation import gettext_lazy as _ This is a bad prac ... read more →