Annotation of basket/zpt/changeBasket.zpt, revision 1.2

1.1       dwinter     1: <h1 tal:replace="structure here/manage_page_header">Header</h1>
                      2: <div class="form-title">
                      3:   Change Baskets main info
                      4: </div>
                      5: <!--<p class="form-help">
                      6: 
                      7: </p>-->
                      8: <form action="changeBasket" method="post">
                      9: <table>
                     10: <tr>
                     11:    <td>
                     12:        <div class="form-optional">Title</div>
                     13:    </td>
                     14:    <td>
1.2     ! casties    15:        <input type="text" name="title" size="40" tal:attributes="value here/getTitle">
1.1       dwinter    16:    </td>
                     17: </tr>
                     18: <tr>
                     19:    <td>
                     20:        <div class="form-label">username</div>
                     21:    </td>
                     22:    <td>
                     23:        <input type="text" name="username" size="40" tal:attributes="value here/getOwner">
                     24:    </td>
                     25: </tr>
                     26: <tr>
                     27:    <td>
                     28:        <div class="form-label">publicationStatus</div>
                     29:    </td>
                     30:    <td>
                     31:        <input type="text" name="publicationStatus" size="40" tal:attributes="value here/publicationStatus">
                     32:    </td>
                     33: </tr>
                     34: <tr>
                     35:    <td>
                     36:        <div class="form-optional">Short description</div>
                     37:    </td>
                     38:    <td>
                     39:        <textarea name="shortDescription" cols="40" rows="10" tal:content="python:getattr(here,'shortDescription','')"></textarea>
                     40:    </td>
                     41: <tr>
                     42:    <td>
                     43:        <div class="form-optional">Comment</div>
                     44:    </td>
                     45:    <td>
1.2     ! casties    46:        <textarea name="comment" cols="40" rows="10" tal:content="here/getComment"></textarea>
1.1       dwinter    47:    </td>
                     48: </tr>
                     49: 
                     50: </table>
                     51: <input type="submit" value="change">
                     52: </form>
                     53: <h1 tal:replace="structure here/manage_page_footer">Footer</h1>

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