<%doc> Template for the data input form. Copyright (c) 2009 Jan Dittberner This file is part of DDPortfolio service. DDPortfolio service is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. DDPortfolio service is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see . ${_('Debian Developer Portfolio')} ${h.stylesheet_link_tag('style')} ${h.start_form(h.url_for(action='handle_post'), method='post')}
${_('Debian Developer Portfolio')}
${h.text_field('name', value=request.params.get('name', None))}

${h.text_field('email', value=request.params.get('email', None))}

${h.text_field('username', value=request.params.get('username', None))}

${_('HTML')} ${h.radio_button('mode', 'html', checked=(request.params.get('mode', 'html') == 'html'))} ${_('JSON')} ${h.radio_button('mode', 'json', checked=(request.params.get('mode', 'html') == 'json'))}
${h.submit(value=_('Build DD Portfolio URLs'))}
${h.end_form()}