summaryrefslogtreecommitdiff
path: root/main/models.py
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2010-03-10 20:50:29 -0600
committerDan McGee <dan@archlinux.org>2010-03-10 20:50:29 -0600
commit21fe1460d4a9d9fca913b3bae50f051a78796ffb (patch)
tree0e053f92d7c3a9c30041673d98148d48caf71287 /main/models.py
parent73baf1b967f5d224842b880d33e636114c9995d9 (diff)
Make the new 'testing' flag on repo a bit clearerrelease_2010-03-10
Since at least two repositories currently fall under this flag, add some help text and visibility to this column. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'main/models.py')
-rw-r--r--main/models.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/main/models.py b/main/models.py
index fabb8673..d129f4a7 100644
--- a/main/models.py
+++ b/main/models.py
@@ -161,7 +161,8 @@ class Arch(models.Model):
class Repo(models.Model):
id = models.AutoField(primary_key=True)
name = models.CharField(max_length=255,unique=True)
- testing = models.BooleanField(default=False)
+ testing = models.BooleanField(default=False,
+ help_text="Is this repo meant for package testing?")
def __unicode__(self):
return self.name
class Meta: