Use Bootstrap

This commit is contained in:
2024-07-02 03:10:47 +02:00
parent e2f7c13b79
commit 2119eead14
12 changed files with 288 additions and 360 deletions

View File

@ -11,6 +11,7 @@ class DiscordSetting(models.Model):
webhook_url = models.URLField()
history = HistoricalRecords()
disabled = models.BooleanField(default=False)
created_at = models.DateTimeField(auto_now_add=True)
def __str__(self) -> str:
return f"Discord: {self.user.username} - {self.name}"