I'm writing a simple web app and to pick which workflow the user will use it starts with a drop-down. I'm using this page as a template for all other pages: base.html:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{% block title %}{% endblock %}</title>
<link rel="stylesheet"
href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<p>Ticket Type:
<select onchange="if (this.value)window.location.href=this.value">
<option value="{{ url_for('welcome') }}">Select an option...</option>
<option value="{{ url_for('create_internal_user') }}">Create Internal Account</option>
<option value="{{ url_for('create_external_user') }}">Create External Account</option>
</select>
{% block content %}
{% endblock %}
</body>
</html>
So when the user selects an option, they're redirected to another page that is also using base.html as its template. The problem is that after the user selects an option, the drop down reverts to "Select an option...". How can I make the drop down reflect which page the user is on?