Diff for /MPIWGWeb/zpt/Attic/editPublications.zpt between versions 1.1 and 1.1.2.1

version 1.1, 2005/10/10 08:42:49 version 1.1.2.1, 2005/10/10 08:42:49
Line 0 Line 1
   <html metal:use-macro="here/mainEditFile/macros/page">
   
   <tal:block metal:fill-slot="body" tal:define="yes_no_list python:'yes\nno'">
   
   <h3>Manage Publications</h3>
   <p><a href="addPublications">Add Publications</a></p>
      <form action="changePublications" method="post">
        <input type="hidden" name="id_main" tal:attributes="value person/id">
        <input type="hidden" name="main_fields" value="publications__title">
   
        <table  tal:define="founds2 python:here.ZSQLInlineSearch(_table='publications',id_main=person.id)">
          <tr tal:repeat="found python:here.sortPriority(founds2)">
        <td>
             <a tal:attributes="href python:'deleteField?table=publications&oid=%s'%found.oid">delete</a>
           </td>
        <td>
          <span tal:replace="structure python:here.formatBibliography(here,found)"/>
        </td>
        <td valign="top">
          <input tal:attributes="name python:'publications__priority__'+str(found.oid);
                        value found/priority" size="3"/>
        </td>
        <td valign="top" tal:content="structure python:here.ZSQLSelectionFromCRList(
                    'publications__publish__'+str(found.oid),
                    yes_no_list,
                    boxType='radio',
                    checked=found.publish)"/>
           </tr>
        </table>
        <input type="submit" value="submit">
     </form>
   </tal:block>
   </html>

Removed from v.1.1  
changed lines
  Added in v.1.1.2.1


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