예제 #1
0
파일: __init__.py 프로젝트: xuorig/INF5190
    def poll(poll_id):
        poll = Poll.get_poll_by_id(poll_id)
        if not poll:
            return abort(404)

        choices = Choice.get_choices_for_poll(poll)
        return views.view_poll(poll, choices)
예제 #2
0
    def poll(poll_id):
        poll = Poll.get_poll_by_id(poll_id)
        if not poll:
            return abort(404)

        choices = Choice.get_choices_for_poll(poll)
        #csrf_token = generate_csrf()
        return views.view_poll(poll, choices, csrf_token=None)
예제 #3
0
파일: __init__.py 프로젝트: xuorig/INF5190
    def poll(poll_id):
        poll = Poll.get_or_none(Poll.id == poll_id)
        if not poll:
            return abort(404)

        return views.view_poll(poll)