I have a select tag in my form
<select name="source" id="source">
{% for row in inode.inodes %}
<option value="{{loop.index}}">{{ row.inode.title }}</option>
While the values are used to order the options, what interests me is the text in the option.
however, in the python code,
source = request.form['source']
Is preferring the value. How can I retrieve the text inside the tag instead?