File:  [Repository] / ZSQLExtend / zpt / changeZSQLBibliographyForm.zpt
Revision 1.2: download - view: text, annotated - select for diffs - revision graph
Wed Feb 9 20:10:42 2005 UTC (19 years, 4 months ago) by dwinter
Branches: MAIN
CVS tags: HEAD
VLMA added and deleted in ZSQLEextend

<html>
<body>
<h2>Change ZSQL Bibliography</h2>
<form method="post" action="changeZSQLBibliography">
Name of the Bibliography Table:<input name="tableName" size="100" tal:attributes="value python:here.tableName"><br/>
<table>
<tr>
    <td align="left" valign="top">
    <div class="form-label">
    Label (for linking):
    </div>
    </td>
    <td align="left" valign="top">
    <input type="text" name="label" size="80" tal:attributes="value here/getLabel" />
    </td>
  </tr>
<tr>
    <td align="left" valign="top">
    <div class="form-label">
    Description:
    </div>
    </td>
    <td align="left" valign="top">
    <textarea name="description" cols=50 rows=20  tal:content="here/getDescription"></textarea>
    </td>
  </tr>
<tr>
    <td align="left" valign="top">
    <div class="form-label">
    Connection Id
    </div>
    </td>
    <td align="left" valign="top">
    <div class="form-element">
    
    <select name="connection_id">
     
     <tal:block tal:repeat="id python:here.SQLConnectionIDs()[0]">
                <option  tal:condition="python:getattr(here,'connection_id','')==id"  tal:attributes="value id" selected tal:content="id"/>
                <option  tal:condition="not:python:getattr(here,'connection_id','')==id"  tal:attributes="value id" tal:content="id"/>
            </tal:block>
    </select>
    </div>
    </td>
  </tr>

<tr>
</table>
<input type="submit">
</form>
</body>
</html>

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