## -*- coding: UTF-8 -*-
<%inherit file="layout.html"/>
<%def name="input_container()">
<%call expr="parent.input_container()">
${h.form(h.url_for('/regions/find'), method='get', id='query_form')}
% for p in request.params:
${h.hidden_field(p, value=request.params[p])}
% endfor
Select a region from the list or click one of the Xs on the map:
${h.submit(value='Go to region', title='Go to the selected region', tabindex='2')}
Optionally, enter something to search for:
${h.text_field('q', id='q', value=c.q, title='Enter an address or route', tabindex='1')}
Address (NE 6th and Irving) or route (301 W Burnside to SE 3rd & Main)
${h.end_form()}
%call>
%def>