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:
d0284ad
)
Add type to the CharacterForm.
author
Matthijs Kooijman
<matthijs@stdin.nl>
Sun, 1 Feb 2009 12:49:19 +0000
(13:49 +0100)
committer
Matthijs Kooijman
<matthijs@stdin.nl>
Sun, 1 Feb 2009 12:49:19 +0000
(13:49 +0100)
influences/forms.py
patch
|
blob
|
history
diff --git
a/influences/forms.py
b/influences/forms.py
index 8ced120dcd8d1e854832cf7c43514f7ba4fe5270..fc7d9497e64410fcbea3c9db8c457c047cc7c870 100644
(file)
--- a/
influences/forms.py
+++ b/
influences/forms.py
@@
-72,5
+72,5
@@
class InfluenceForm(ContextModelForm):
class CharacterForm(ContextModelForm):
class Meta:
model = Character
- fields = ('name')
+ fields = ('name'
, 'type'
)