File:  [Repository] / MPIWGWeb / zpt / Attic / edit_publicationForm.zpt
Revision 1.1.2.7: download - view: text, annotated - select for diffs - revision graph
Wed Aug 27 12:12:48 2008 UTC (15 years, 10 months ago) by dwinter
Branches: r2
CLOSED - # 22: ErgŠnze persšnliche homepage um das HinzufŸgen von weiteren Dokumenten / Links
https://itgroup.mpiwg-berlin.mpg.de:8080/tracs/webpage/ticket/22

    1: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    2:           "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    3: <html metal:use-macro="here/edit_MPIWGProject_main/macros/page">
    4: <head>
    5: </head>
    6: <body>
    7: <tal:block metal:fill-slot="navsel" tal:define="global menusel string:publications" />
    8: <tal:block metal:fill-slot="body">
    9:   <h3>Edit a publication</h3>
   10:   
   11:   <form action="editPublication" method="post" enctype="multipart/form-data">
   12:   <p>Bibliographical entry</p>
   13:     <textarea tal:content="structure python:getattr(here,'text','')" name="text" rows="3" cols="80"></textarea>
   14:     
   15:   <p>Image 1 (e.g. Cover)</p>
   16:   <p tal:condition="python:hasattr(here,'publicationImage1')">
   17:   	<img tal:attributes="src python:here.publicationImage1.absolute_url()" height="100"/>
   18:   	</p>
   19:    <p>Upload new image:<input type="file" name="image1" len="50"/></p>
   20:   <p>Image 2 (e.g. Table of Contents)</p>
   21:   <p tal:condition="python:hasattr(here,'publicationImage2')">
   22:   	<img tal:attributes="src python:here.publicationImage2.absolute_url()" height="100"/>
   23:   	</p>
   24:    <p>Upload new image:<input type="file" name="image2" len="50"/></p>
   25:   
   26:  
   27:   <p>Descriptive Text</p>
   28:   <p>
   29:   <textarea tal:content="structure python:getattr(here,'description','')" name="description" rows="10" cols="80"></textarea>
   30:   </p>
   31:   <p><input type="submit" value="submit"/></p>
   32:   </form>
   33:   
   34:   <h3><a href="managePublications">Back to publication list</a></h3>
   35: </tal:block>
   36: </body>
   37: </html>

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