feat(billing): Enhance Topup admin interface and add default ordering for Topup model

This commit is contained in:
2025-07-03 21:03:15 +05:00
parent 978a4a27d0
commit 2122e8dfee
2 changed files with 22 additions and 1 deletions

View File

@ -58,3 +58,6 @@ class Topup(models.Model):
def __str__(self):
return f"Topup for {self.user}"
class Meta:
ordering = ["-created_at"]