## -- coding: utf-8 -- \ <%inherit file="base.mako" /> <%doc> Template for the data input form. Copyright © 2009-2014 Jan Dittberner This file is part of the Debian Member Portfolio service. Debian Member Portfolio 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. Debian Member Portfolio 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(controller='showformscripts', action='index'))} ${h.form(h.url(action='urllist', controller='portfolio'), method='get')}
${_('Debian Member Portfolio')}

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

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

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

${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')}

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

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

${_('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 Debian Member Portfolio URLs'))}
${h.end_form()}