Annotation of ECHO_content/zpt/AddECHO_copyright.zpt, revision 1.1

1.1     ! dwinter     1: <html>
        !             2: <body>
        !             3: <h2>Add a copyright</h2>
        !             4: <form action="manage_addECHO_copyright" method="post">
        !             5: <p>Please select the copyright restrictions for the differen media types covered by this ressource.</p>
        !             6: <p>If you change the institution than the copyright type will automatically change to the generic copyright type of this insitution</p>
        !             7: <p>Only partner institutions can be selected which are partners of this collection, please select all contributing partners of this collection there.</p>
        !             8: <table>
        !             9:   <tr>
        !            10:     <td><b>ID:</b></td><td><input name="id" size="40"></td>
        !            11:   </tr>
        !            12:   <tr>
        !            13:     <td><i>title:</i></td><td><input name="title" size="40"></td>
        !            14:   </tr>
        !            15:   <tr tal:repeat="i python:range(3)">
        !            16:     <td><b>Type <span tal:replace="i"/></td>
        !            17:     <td>
        !            18:       <select tal:attributes="name python:'media%s'%str(i)" tal:content="structure python:here.mediaTypeSelector_HTML()"/>
        !            19:       
        !            20:       <tal:block tal:condition="not:python:here.REQUEST.has_key('partn%s'%str(i))">
        !            21:    <select tal:attributes="name python:'partn%s'%str(i);onChange python:'location.href=\''+here.REQUEST['URL']+'?partn%s'%str(i)+'=\'+this.options[this.selectedIndex].value'" tal:content="structure python:here.partnerSelector_HTML()"/>
        !            22:    <select tal:attributes="name python:'copyr%s'%str(i)" tal:content="structure python:here.copyrightTypeSelector_HTML()"/>
        !            23:       </tal:block>
        !            24:       <tal:block tal:condition="python:here.REQUEST.has_key('partn%s'%str(i))">
        !            25:    <select tal:attributes="name python:'partn%s'%str(i);onChange python:'location.href=\''+here.REQUEST['URL']+'?partn%s'%str(i)+'=\'+this.options[this.selectedIndex].value'" tal:content="structure python:here.partnerSelector_HTML(selected=here.REQUEST['partn%s'%str(i)])"/>
        !            26:    <select tal:attributes="name python:'copyr%s'%str(i)" tal:content="structure python:here.copyrightTypeSelector_HTML(selected=here.getPartnerCopyright(here.REQUEST['partn%s'%str(i)],''))"/>
        !            27:       </tal:block>
        !            28: 
        !            29: 
        !            30: </td>
        !            31:   </tr>
        !            32: </table>
        !            33: <input type="submit">
        !            34: </body>
        !            35: </html>

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