In my django templates how can I know which select option is selected?
<select id="platformid" name="platform">
{% for x in list %}
<option value="{{x.company}}">{{x.company}}</option>
{% endfor %}
</select>