<%inherit file="base.mako" /> <%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 . <%def name="titleaddon()"> - ${_('Enter your personal information')} <%def name="extrahead()">${h.javascript_link('/javascript/jquery/jquery.js', h.url_for(controller='showformscripts', action='index'))} ${h.form(h.url_for(action='urllist'), method='get')}
${_('Debian Developer Portfolio')}

${h.text('email', h.escape(request.params.get('email', None), True), id='email')}

${h.text('name', h.escape(request.params.get('name', None)), id='name')}

${h.text('username', h.escape(request.params.get('username', None)), id='username')}

${h.text('nonddemail', h.escape(request.params.get('nonddemail', None)), id='nonddemail')}

${h.text('aliothusername', h.escape(request.params.get('username', None)), id='aliothusername')}

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