Skip to content
Snippets Groups Projects
Commit 50e0508d authored by Jonathan Weth's avatar Jonathan Weth :keyboard:
Browse files

Small bug fix

parent 6e522798
No related branches found
No related tags found
1 merge request!86Merge school-apps
......@@ -54,7 +54,7 @@ class Cache(models.Model):
last_time_updated = models.DateTimeField(blank=True, null=True,
verbose_name="Letzter Aktualisierungszeitpunkt des Caches")
site_cache = models.BooleanField(default=False, verbose_name="Seitencache?")
needed_until = models.DateField(default=None, null=True, verbose_name="Benötigt bis")
needed_until = models.DateField(default=None, null=True, blank=True, verbose_name="Benötigt bis")
class Meta:
verbose_name = "Cacheeintrag"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment