Default bootstrap tables

* adds basic bootstrap classes to BaseTable model
This commit is contained in:
mipel
2021-07-20 14:23:16 +02:00
parent 8c32aaa845
commit d2340ffe0a
5 changed files with 39 additions and 9 deletions
+2 -1
View File
@@ -26,9 +26,10 @@ class Intervention(BaseObject):
registration_file_number = models.CharField(max_length=1000, blank=True, null=True)
conservation_office = models.ForeignKey(Organisation, on_delete=models.SET_NULL, null=True, related_name="+")
conservations_file_number = models.CharField(max_length=1000, blank=True, null=True)
process_type = models.CharField(max_length=500, null=True, blank=True)
law = models.CharField(max_length=500, null=True, blank=True)
handler = models.CharField(max_length=500, null=True, blank=True)
handler = models.CharField(max_length=500, null=True, blank=True, help_text="Who is responsible for this intervention?")
geometry = models.ForeignKey(Geometry, null=True, blank=True, on_delete=models.SET_NULL)
documents = models.ManyToManyField("konova.Document", blank=True)