Allow the use of local copies of cdn files

This commit is contained in:
2023-01-04 14:49:00 +01:00
parent 68a18fcf58
commit 3860ed70fd
6 changed files with 35 additions and 1 deletions

View File

@@ -35,6 +35,7 @@ class SiteConfiguration(SingletonModel):
footer = RichTextField(blank=True)
footer_extended = RichTextField(blank=True)
show_version = models.BooleanField(default=True)
use_cdn = models.BooleanField(default=True)
extra_head = models.TextField(blank=True)
class Meta: