Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a Jinja2 template that looks like this:

<form action="" method=post>
    <table>
        <tr>
            <th></th>
            <th>ID</th>
            <th>Title</th>
        </tr>
        {% for page in pages %}
            <tr>
                <td><input type=checkbox name=do_delete value="{{ page['id'] }}"></td>
                <td>{{ page['id'] }}</td>
                <td><a href="{{ page['id'] }}">{{ page['title'] }}</a></td>
            </tr>
        {% endfor %}
    </table>
    With selected:
    <input type=submit value=Delete>
</form>

And I have a function, that should delete the pages according to which checkboxes were checked, when the 'Delete' button is clicked:

db.session.query(Page).filter(Page.id.in_(page_ids)).delete()

What I'm stuck with is how do I iterate through all the checkboxes and form the page_ids list of checked ones.

share|improve this question

1 Answer

up vote 7 down vote accepted

Flask's request object (well, actually the class that is returned by the LocalProxy instance that is request) is a subclass of werkzeug's MultiDict data structure - which includes a getlist method.

page_ids = request.form.getlist("do_delete")
share|improve this answer
That works, thanks! – Andriy Yurchuk Nov 3 '11 at 15:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.