Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

default ordering django

# There is no default ordering by default
# To add one, specify `ordering` in `YourModel.Meta`

class Table(models.Model):
    ...
    class Meta:
        ordering = ['name']
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #default #ordering #django
ADD COMMENT
Topic
Name
8+3 =