summaryrefslogtreecommitdiffstats
path: root/funcweb
diff options
context:
space:
mode:
authormakkalot <makkalot@gmail.com>2008-06-30 18:39:04 +0300
committermakkalot <makkalot@gmail.com>2008-06-30 18:39:04 +0300
commit4b5dd860f9db31bc20865ce1ddb41fb910e64be9 (patch)
tree2b147feacef45dfd3717a4a97726399c5e5b9b5e /funcweb
parent901e7d33106aedd310e3c19b30ac314f1ead6734 (diff)
downloadfunc-4b5dd860f9db31bc20865ce1ddb41fb910e64be9.tar.gz
func-4b5dd860f9db31bc20865ce1ddb41fb910e64be9.tar.xz
func-4b5dd860f9db31bc20865ce1ddb41fb910e64be9.zip
adding a new template for repeating fields
Diffstat (limited to 'funcweb')
-rw-r--r--funcweb/funcweb/widget_automation.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/funcweb/funcweb/widget_automation.py b/funcweb/funcweb/widget_automation.py
index a99fbd5..351603b 100644
--- a/funcweb/funcweb/widget_automation.py
+++ b/funcweb/funcweb/widget_automation.py
@@ -128,7 +128,7 @@ class WidgetListFactory(object):
@return : Nothing
"""
hash_repeat_data = {
- 'template':"sampleapp.templates.repeater_form",#may change that if someone doesnt like my design :)
+ 'template':"funcweb.templates.repeater_form",#may change that if someone doesnt like my design :)
'fields': [
widgets.TextField(name="keyfield",label="Key Field"),
widgets.TextField(name="valuefield",label="Value Field")
@@ -159,7 +159,7 @@ class WidgetListFactory(object):
@return : Nothing
"""
list_repeat_data = {
- 'template':"sampleapp.templates.repeater_form",#may change that if someone doesnt like my design :)
+ 'template':"funcweb.templates.repeater_form",#may change that if someone doesnt like my design :)
'fields' : [
widgets.TextField(name="listfield",label="List Field")
],