In my Django template, I am using the list of objects in a drop down menu. I am processing it based on the selection.
The HTML Template:
You'll want to pass the currently selected org into the view, maybe as current_org
so that when you're iterating through the orgs you can compare with the current one to determine whether or not to select it, like:
{% for org in organisation %}
<option value="{{org.id}}"
{% if org == current_org %}selected="selected"{% endif %}>
{{org.name|capfirst}}
</option>
{% endfor %}