5f4542992a
previously, it wasn't possible to insert anything into the <head> on an individual template unless it was the title of the page. Now, the structure is a bit more flexible to allow additional head elements to be included.
34 lines
1.5 KiB
Cheetah
34 lines
1.5 KiB
Cheetah
<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
|
|
<title>Koha › Cataloging › Add a Non-MARC Record</title>
|
|
<!-- TMPL_INCLUDE NAME="doc-head-close-addbiblio.inc" -->
|
|
|
|
|
|
|
|
<!-- TMPL_IF name="ERROR" -->
|
|
Please Specify a Title
|
|
<!-- /TMPL_IF -->
|
|
|
|
<form action="savebiblio.pl" method="post">
|
|
|
|
<table>
|
|
<caption>Adding a new bibliographic record</caption>
|
|
<tr><th scope="row"><label for="title">Title: *</label></th><td><input name="title" id="title" type="text" size="40" /> * Required</td>
|
|
</tr>
|
|
<tr><th scope="row"><label for="subtitle">Subtitle:</label></th><td><input name="subtitle" id="subtitle" type="text" size="40" /></td>
|
|
</tr>
|
|
<tr><th scope="row"><label for="author">Author:</label></th><td><input name="author" id="author" type="text" size="40" /></td>
|
|
</tr>
|
|
<tr><th scope="row"><label for="seriestitle">Series Title:</label><br>
|
|
<i>(if applicable)</i></th><td><input name="seriestitle" type="text" id="seriestitle" size="40" /></td>
|
|
</tr>
|
|
<tr><th scope="row"><label for="copyrightdate">Copyright Date:</label></th><td><input id="copyrightdate" name="copyrightdate" type="text" size="40" /></td>
|
|
</tr>
|
|
<tr><th scope="row"><label for="abstract">Abstract:</label></th><td><textarea cols="30" id="abstract" rows="6" name="abstract"></textarea></td>
|
|
</tr>
|
|
<tr><th scope="row"><label for="bib-notes">Notes:</label></th><td><textarea cols="30" rows="6" id="bib-notes" name="notes"></textarea></td>
|
|
</tr>
|
|
</table>
|
|
<input type="submit" value="Add Record" />
|
|
|
|
</form>
|
|
<!-- TMPL_INCLUDE name="intranet-bottom.inc" -->
|