Django表单向导 - done()方法中的缩进错误?

时间:2012-05-08 20:55:17

标签: python django

我一直在尝试编写我的done()方法,但是我收到了一个Indenation错误:

IndentationError at /addWizard/
expected an indented block (views.py, line 105)

我的views.py(第105行是if语句)

class AddWizard(SessionWizardView):
    def get_template_names(self):
        return ['business/add_{0}_form.html'.format(self.steps.current)]

    def done(self, form_list, **kwargs):
        if form_list[0].get('ad_type') == '1': #LINE 105
            ad_type = "Basic"
        else:
            ad_type = "Other"

        return render_to_response('business/done.html', {
            'form_data': ad_type,
        })

如果返回语句本身就是唯一的方法。我已经盯着它看了几个小时。

0 个答案:

没有答案