You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
According to Django's default coding style there is a next order of model inner classes and standard methods:
All database fields
Custom manager attributes
class Meta
def str()
def save()
def get_absolute_url()
Any custom methods
Describe the solution you'd like
I would like to specify get_absolute_url after save or delete option so it will be like next configuration:
Is your feature request related to a problem? Please describe.
According to Django's default coding style there is a next order of model inner classes and standard methods:
Describe the solution you'd like
I would like to specify
get_absolute_url
aftersave
ordelete
option so it will be like next configuration:The text was updated successfully, but these errors were encountered: