aboutsummaryrefslogtreecommitdiffstats
path: root/layerindex/models.py
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2013-03-06 18:30:00 +0000
committerPaul Eggleton <paul.eggleton@linux.intel.com>2013-03-06 18:31:02 +0000
commit4be747582f936ee4a06a5c6447d3fc1ef7d48534 (patch)
tree2fdc47594da75698f771c96942a6a85c20a1761e /layerindex/models.py
parent94ff843006fede275148a545e7011f21bf6c73cb (diff)
downloadopenembedded-core-contrib-4be747582f936ee4a06a5c6447d3fc1ef7d48534.tar.gz
Add a short description for branches to show in drop-down
Allows you to add e.g. "old stable" next to the denzil branch for clarification. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Diffstat (limited to 'layerindex/models.py')
-rw-r--r--layerindex/models.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/layerindex/models.py b/layerindex/models.py
index aaa79bcece..b581d8dd38 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"