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:
current_org
{% for org in organisation %} {{org.name|capfirst}} {% endfor %}