Is is possible to have a WTForm in which a drop down selection box (SelectField or QuerySelectField) displays a concatentated display value?
For example, your database may contain:
ID=1, FirstName=John, LastName=Smith
ID=2, FirstName=Kim, LastName=Johnson
so the generated HTML code would be something like:
<select name="userid">
<option value="1">John Smith</option>
<option value="2">Kim Johnson</option>
</select>
The display value is the concatenated value of FirstName + LastName. The unique identifier in the database will be the ID.