I usually tackle these kinds of problems with Javascript. In the page you generate, write javascript commands to check the boxes you need.
function setChecks()
{
{% for c in model.categories %}
document.getElementById("{{ c }}").checked = true;
{% endfor %}
}
...
{% for c in categories %}
<input type="checkbox" id="{{ c.key }}">
{% endfor %}
> --
>
> You received this message because you are subscribed to the Google Groups "Google App Engine" group.
> To post to this group, send email to
google-a...@googlegroups.com.
> To unsubscribe from this group, send email to
google-appengi...@googlegroups.com.
> For more options, visit this group at
http://groups.google.com/group/google-appengine?hl=.
>
>