projects
/
matthijs
/
projects
/
xerxes.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b69c90a
)
* Add a result field to Influence.
author
Matthijs Kooijman
<matthijs@stdin.nl>
Thu, 31 Jan 2008 17:30:55 +0000
(18:30 +0100)
committer
Matthijs Kooijman
<matthijs@stdin.nl>
Thu, 31 Jan 2008 17:30:55 +0000
(18:30 +0100)
influences/models.py
patch
|
blob
|
history
diff --git
a/influences/models.py
b/influences/models.py
index a2c72266dd2ad97fdbf7e4330b15c681bc9b4642..2291d701b2c3b294bdf467201b233ed5bc71d79e 100644
(file)
--- a/
influences/models.py
+++ b/
influences/models.py
@@
-36,6
+36,8
@@
class Influence(models.Model):
status = models.TextField(max_length=1, choices=STATUS_CHOICES, default='N', verbose_name = _("Status"))
longterm = models.BooleanField(default=False, verbose_name = _("Long term"))
+ result = models.TextField(verbose_name = _("Result"))
+
def __str__(self):
return self.summary