File:  [Repository] / ECHO_content / zpt / ChangeECHO_copyright.zpt
Revision 1.3: download - view: text, annotated - select for diffs - revision graph
Mon Jun 7 15:20:26 2004 UTC (20 years ago) by dwinter
Branches: MAIN
CVS tags: HEAD
getCopyrightsHTML added and concept changed for selected generic copyrights

<html>
<body>
<h2>Change copyright</h2>
<form action="ECHO_copyright_config" method="post">
<p>Please select the copyright restrictions for the different media types covered by this resource.</p>
<p>If you change the institution the copyright type will automatically change to the generic copyright type of this insitution</p>
<p>Only partner institutions can be selected which are partners of this collection, please select all contributing partners of this collection there.</p>
<table tal:define="global i python:0">
 
  <tr>
    <td><i>title:</i></td><td><input name="title" size="40"></td>
  </tr>
  <tr tal:repeat="copyright python:here.copyrights">
    <td><b>Type <span tal:define="global i python:i+1" tal:replace="i"/></td>
    <td>
      <select tal:attributes="name python:'media%s'%str(i)" tal:content="structure python:here.mediaTypeSelector_HTML(selected=copyright[0])"/>

      <select tal:attributes="name python:'partn%s'%str(i)" tal:content="structure python:here.partnerSelector_HTML(selected=copyright[1])"/>
      <select tal:attributes="name python:'copyr%s'%str(i)" tal:content="structure python:here.copyrightTypeSelector_HTML(selected=copyright[2],first=('institution0000','-- generic of the selected institution --'))"/>
      
     

</td>
  </tr>
  <tr tal:repeat="i python:range(i+1,i+3)">
    <td><b>Type <span  tal:replace="i"/></td>
    <td>
      <select tal:attributes="name python:'media%s'%str(i)" tal:content="structure python:here.mediaTypeSelector_HTML()"/>
      <select tal:attributes="name python:'partn%s'%str(i)" tal:content="structure python:here.partnerSelector_HTML()"/>
      <select tal:attributes="name python:'copyr%s'%str(i)" tal:content="structure python:here.copyrightTypeSelector_HTML()"/>
   </td>
  </tr>
</table>
<input type="submit"><input type="reset">
</body>
</html>

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>