File:  [Repository] / ECHO_content / zpt / ChangeECHO_copyright.zpt
Revision 1.6: download - view: text, annotated - select for diffs - revision graph
Tue Dec 13 12:45:22 2005 UTC (18 years, 6 months ago) by dwinter
Branches: MAIN
CVS tags: cleanup, Root_cleanup, HEAD
change utf-8 handlingCVS: ----------------------------------------------------------------------

    1: <h1 tal:replace="structure here/manage_page_header">Header</h1>
    2: <h2>Change copyright</h2>
    3: <form action="ECHO_copyright_config" method="post">
    4: <p>Please select the copyright restrictions for the different media types covered by this resource.</p>
    5: <p>If you change the institution the copyright type will automatically change to the generic copyright type of this insitution</p>
    6: <p>Only partner institutions can be selected which are partners of this collection, please select all contributing partners of this collection there.</p>
    7: <table tal:define="global i python:0">
    8:  
    9:   <tr>
   10:     <td><i>title:</i></td><td><input name="title" size="40"></td>
   11:   </tr>
   12:   <tr tal:repeat="copyright python:here.copyrights">
   13:     <td><b>Type <span tal:define="global i python:i+1" tal:replace="i"/></td>
   14:     <td>
   15:       <select tal:attributes="name python:'media%s'%str(i)" tal:content="structure python:here.mediaTypeSelector_HTML(selected=copyright[0])"/>
   16: 
   17:       <select tal:attributes="name python:'partn%s'%str(i)" tal:content="structure python:here.partnerSelector_HTML(selected=copyright[1])"/>
   18:       <select tal:attributes="name python:'copyr%s'%str(i)" tal:content="structure python:here.copyrightTypeSelector_HTML(object=here, selected=copyright[2], first=('institution0000','-- generic of the selected institution --'))"/>
   19:       
   20:      
   21: 
   22: </td>
   23:   </tr>
   24:   <tr tal:repeat="i python:range(i+1,i+3)">
   25:     <td><b>Type <span  tal:replace="i"/></td>
   26:     <td>
   27:       <select tal:attributes="name python:'media%s'%str(i)" tal:content="structure python:here.mediaTypeSelector_HTML()"/>
   28:       <select tal:attributes="name python:'partn%s'%str(i)" tal:content="structure python:here.partnerSelector_HTML()"/>
   29:       <select tal:attributes="name python:'copyr%s'%str(i)" tal:content="structure python:here.copyrightTypeSelector_HTML(object=here)"/>
   30:    </td>
   31:   </tr>
   32: </table>
   33: <input type="submit" value="Change"><input type="reset">
   34: <h1 tal:replace="structure here/manage_page_footer">Footer</h1>

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