diff --git a/layerindex/models.py b/layerindex/models.py index aaa79bc..b581d8d 100644 --- a/layerindex/models.py +++ b/layerindex/models.py @@ -14,6 +14,7 @@ import re class Branch(models.Model): name = models.CharField(max_length=50) bitbake_branch = models.CharField(max_length=50) + short_description = models.CharField(max_length=50, blank=True) class Meta: verbose_name_plural = "Branches" diff --git a/templates/base.html b/templates/base.html index 1586338..bd6ed47 100644 --- a/templates/base.html +++ b/templates/base.html @@ -39,11 +39,14 @@