Hi, I have a 'project' model. Each project can have a gallery (im using the photologue-app as model).
Now, when I want to let my users edit his project I want to show him all the photos in the gallery and for each photo he can tick a "Remove"-checkbox and/or check a radio button that says "Use as image cover". I guess I need to make a custom form/widget model but Im not quite sure how to approach it (first time I user forms in Django) but I'd like it to something like this in the html template: {% for photofield in form.gallery %} {{ photofield.radio_button }} Use as image cover {{ photofield.remove_checkbox }} Remove image <img src="{{ photofield.image_url }}" /> {% endfor %} Could you tell me what's the best practice to achieve this? Cheers! -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.