Annotation of MPIWGWeb/zpt/edit_MPIWGDisciplinesThemesNeu.zpt, revision 1.1.2.2

1.1.2.1   dwinter     1: <html>
                      2: <head>
                      3: <style type="text/css">
                      4: <!--
                      5: .add-nav {
                      6: font-weight:bold;
                      7: padding-left:8px;
                      8: }
                      9: -->
                     10: </head>
                     11: <body>
                     12: <h2>Edit: <i tal:content="python:here.getContent('WEB_title')"/></h2>
1.1.2.2 ! dwinter    13: <p><a class="add-nav" href="edit">Project Description</a> <a class="add-nav" href="">Publications</a><a class="add-nav" href="manageImages">Images at the margin</a><a class="add-nav">Themes and disciplines</a><a class="add-nav" href="editMPIWGBasisEditor">Additional information</a></p>
1.1.2.1   dwinter    14: <hr>
                     15: 
                     16: <h3>Edit Disciplines and themes</h3>
                     17: <h4>Disciplines</h4>
                     18: <form method="post" action="editMPIWGDisciplinesThemes">
                     19: <input type="hidden" name="fromEdit" value="yes"/>
                     20: <tal:block tal:replace="python:here.getContent('xdata_09')"/>
                     21: 
                     22: <tal:block tal:repeat="discipline here/getDisciplineList">
                     23:   <tal:block tal:condition="python:here.isChecked(discipline,here.getContent('xdata_09'))">
                     24:     <input tal:attributes="value discipline" name="disciplines" type="checkbox" checked><span tal:replace="discipline"/>
                     25:   </tal:block>
                     26:   <tal:block tal:condition="not:python:here.isChecked(discipline,here.getContent('xdata_09'))">
                     27:     <input tal:attributes="value discipline" name="disciplines" type="checkbox"><span tal:replace="discipline"/>
                     28:   </tal:block>
                     29: </tal:block>
                     30: <br>
                     31: <h4>Themes</h4>
                     32: <tal:block tal:repeat="theme here/getThemeList">
                     33:   <tal:block tal:condition="python:here.isChecked(theme,here.getContent('xdata_10'))">
                     34:     <input tal:attributes="value theme" name="themes" type="checkbox" checked><span tal:replace="theme"/>
                     35:   </tal:block>
                     36:   <tal:block tal:condition="not:python:here.isChecked(theme,here.getContent('xdata_10'))">
                     37:     <input tal:attributes="value theme" name="themes" type="checkbox"><span tal:replace="theme"/>
                     38:   </tal:block><br>
                     39: </tal:block>
                     40: <br>
                     41: <input type="submit" value="change">
                     42: </form>
                     43: </body>
                     44: </html>

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