mirror of
https://github.com/tjsga/studyguides.git
synced 2025-04-05 11:50:16 -04:00
order tags alphabetically
This commit is contained in:
parent
6be42f7aa1
commit
8ba9a48d9e
|
@ -41,5 +41,8 @@ class Tag(models.Model):
|
||||||
url = models.SlugField(max_length=100, unique=True, null=True, validators=[RegexValidator(
|
url = models.SlugField(max_length=100, unique=True, null=True, validators=[RegexValidator(
|
||||||
regex="^[a-z0-9_\-]+$", message="Only lowercase alphanumeric, dashes, and underscores allowed")])
|
regex="^[a-z0-9_\-]+$", message="Only lowercase alphanumeric, dashes, and underscores allowed")])
|
||||||
|
|
||||||
|
class Meta:
|
||||||
|
ordering = ['url']
|
||||||
|
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
return self.name
|
return self.name
|
Loading…
Reference in New Issue
Block a user