view zpt/staff/edit_publications.zpt @ 168:07beb979e7e4

Merge with 6e0bea9510c9c28db9c8cc44e8bb9b51bff7168b
author casties
date Fri, 07 Jun 2013 11:32:05 +0200
parents ee79f6ba8d01
children 485bf377913a
line wrap: on
line source

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
          "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html metal:use-macro="here/mainEditFile/macros/page">
<body>
  <tal:block metal:fill-slot="navsel" tal:define="global menusel string:publications" />
  <tal:block metal:fill-slot="body">


    <h2>Selection mode</h2>
    <form method="post" action="">
     <input type="radio" name="selectionMode" value="year" tal:attributes="checked python:here.content.publications_mode=='year'" />
      Show the five most recent publications. (no further action needed)
      <input type="radio" name="selectionMode" value="priority"
        tal:attributes="checked python:here.content.publications_mode=='priority'" />Show selected publications.
      <input type="submit" name="submit" />
    </form>

    <ul tal:condition="python:here.content.publications_mode=='priority'">
      <li><a href="addPublicationsFromPubman">Add an Entry</a></li>
      <li><a href="changePublications">Delete entries from the list or Change the priorities</a></li>

    </ul>

  </tal:block>
</body>
</html>