Change default icon for accounts
This commit is contained in:
parent
0e0b9fc927
commit
b9e3ee059e
2 changed files with 23 additions and 1 deletions
|
@ -34,7 +34,9 @@ class CustomModel(UserModel):
|
|||
class Account(CustomModel):
|
||||
id = models.UUIDField(primary_key=True, default=uuid.uuid4, editable=False)
|
||||
name = models.CharField(max_length=64, default=_("Account"), verbose_name=_("Name"))
|
||||
icon = models.CharField(max_length=64, default="folder", verbose_name=_("Icon"))
|
||||
icon = models.CharField(
|
||||
max_length=64, default="building-columns", verbose_name=_("Icon")
|
||||
)
|
||||
|
||||
def __str__(self):
|
||||
return self.name
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue