]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/web/templates/default/acq/picklist/brief_record.tt2
added code to build the marc xml from the form, added option to select destination...
[working/Evergreen.git] / Open-ILS / web / templates / default / acq / picklist / brief_record.tt2
1 [% WRAPPER 'default/base.tt2' %]
2 <script src='[% ctx.media_prefix %]/js/ui/default/acq/picklist/brief_record.js'> </script>
3
4 <h1>New Brief Record</h1><br/>
5 <form dojoType='dijit.form.Form'>
6     <script type='dojo/method' event='onSubmit'>
7         return saveBriefRecord(this.getValues());
8     </script>
9     <table class='oils-generic-table'>
10         <tbody id='acq-brief-record-tbody'>
11             <tr>
12                 <td>Add To Selection List</td>
13                 <td><select dojoType='dijit.form.ComboBox' jsId='plSelector'/></td>
14             </tr>
15             <tr id='acq-brief-record-row'>
16                 <td><div name='name'/></td>
17                 <td><div name='widget'/></td>
18             </tr>
19         </tbody>
20         <tbody>
21             <tr>
22                 <td><button dojoType='dijit.form.Button' type='submit'>Submit</button></td>
23                 <td><button dojoType='dijit.form.Button' type='submit' jsId='marcEditButton'>Edit MARC</button></td>
24             </tr>
25         </tbody>
26     </table>
27 </form>
28 [% END %]