himanshu14 / django-survey

Automatically exported from code.google.com/p/django-survey
0 stars 0 forks source link

<div None> #20

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
        <div {{ bound_field.form.question.qstyle|safe}}>

If no qstyle is set, you get <div None> which is... 

fix:
        <div {{ bound_field.form.question.qstyle|default_if_none:""|safe}}>

Original issue reported on code.google.com by cfkars...@gmail.com on 22 Jul 2008 at 8:19

GoogleCodeExporter commented 8 years ago
Fixed in r83

Original comment by yann.ma...@gmail.com on 23 Jul 2008 at 7:53