order tags alphabetically

This commit is contained in:
lauren 2020-11-11 14:29:53 -05:00
parent 6be42f7aa1
commit 8ba9a48d9e

View File

@ -41,5 +41,8 @@ class Tag(models.Model):
url = models.SlugField(max_length=100, unique=True, null=True, validators=[RegexValidator(
regex="^[a-z0-9_\-]+$", message="Only lowercase alphanumeric, dashes, and underscores allowed")])
class Meta:
ordering = ['url']
def __str__(self):
return self.name