git-svn-id: svn://svn.open-ils.org/ILS/branches/acq-experiment@9639
dcc99617-32d9-48b4-a31d-
7c20da2025e4
+++ /dev/null
-# -*- coding: utf-8 -*-
-<!-- vim:set filetype=mako: -->
-<%inherit file='../base.html'/>
-<%def name="page_title()">${_('Create Picklist')}</%def>
-<%def name="block_content()">
-
-<form action='${c.oils.acq.prefix.value}/picklist/create' method='POST'>
- <table class='oils-admin-table'>
- <tbody>
- <tr>
- <td class='oils-admin-label'>${_('Picklist Name')}</td>
- <td>
- <input type='text' size='42' name='${c.oils.acq.picklist_name.cgi_name}'/>
- </td>
- </tr>
- <tr>
- <td colspan='2'>
- <input type='submit' value='${_("Create Picklist")}'/>
- </td>
- </tr>
- </tbody>
- </table>
-</form>
-</%def>