diff options
Diffstat (limited to 'main/models.py')
-rw-r--r-- | main/models.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/main/models.py b/main/models.py index 580e1eec..eb16e612 100644 --- a/main/models.py +++ b/main/models.py @@ -306,5 +306,13 @@ class TodolistPkg(models.Model): db_table = 'todolist_pkgs' unique_together = (('list','pkg'),) +class ExternalProject(models.Model): + url = models.URLField() + name = models.CharField(max_length=64) + description = models.CharField(max_length=128) + + def __unicode__(self): + return self.name + # vim: set ts=4 sw=4 et: |