Найти - Пользователи
Полная версия: web.py: проблемы с конструктором форм
Начало » Web » web.py: проблемы с конструктором форм
1
Punk_Joker
В чем проблема?

#coding:utf-8
import web
from web import form
urls = (
    '/', 'index',
	'/add', 'list_of_work'
)
class list_of_work:
    def GET(self):
        register_form = form.Form(
            form.Textbox("username", description="Логин"),
        )
	    return register_form().render()
class index:
    def GET(self):
        return "Hello, world!"
if __name__ == "__main__":
    app = web.application(urls, globals())
    app.run()

Ошибка на скрине
o7412369815963
Punk_Joker
В чем проблема?
лишний отступ в строке
Punk_Joker
Еще такой вопрос, как задавать размеры элементов формы, например Textbox'а? Если нельзя, подскажите более функциональный аналог.
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Powered by DjangoBB