Mercurial > p > roundup > code
view templates/minimal/html/user.item.html @ 2467:76ead526113d
client instances may be used as translation engines.
any backend translator may be passed as constructor
argument or via setTranslator() method. by default,
templating.translationService is used.
use this engine to translate client messages.
| author | Alexander Smishlajev <a1s@users.sourceforge.net> |
|---|---|
| date | Tue, 15 Jun 2004 09:19:49 +0000 |
| parents | 22fb3d867b64 |
| children | 927759deb5ec |
line wrap: on
line source
<!-- dollarId: user.item,v 1.7 2002/08/16 04:29:04 richard Exp dollar--> <tal:block metal:use-macro="templates/page/macros/icing"> <title metal:fill-slot="head_title" i18n:translate="">User editing - <span i18n:name="tracker" tal:replace="config/TRACKER_NAME" /></title> <tal:block metal:fill-slot="body_title"> <span tal:condition="python: not (context.id or context.is_edit_ok())" tal:omit-tag="python:1" i18n:translate="">New User</span> <span tal:condition="python: not context.id and context.is_edit_ok()" tal:omit-tag="python:1" i18n:translate="">New User Editing</span> <span tal:condition="python: context.id and not context.is_edit_ok()" tal:omit-tag="python:1" i18n:translate="">User<tal:x replace="context/id" i18n:name="id" /></span> <span tal:condition="python: context.id and context.is_edit_ok()" tal:omit-tag="python:1" i18n:translate="">User<tal:x replace="context/id" i18n:name="id" /> Editing</span> </tal:block> <td class="content" metal:fill-slot="content"> <span tal:condition="python:not (context.is_view_ok() or context.is_edit_ok())" i18n:translate="">You are not allowed to view this page.</span> <form method="POST" onSubmit="return submit_once()" enctype="multipart/form-data" tal:condition="context/is_edit_ok"> <table class="form"> <tr> <th i18n:translate="">Login Name</th> <td tal:content="structure context/username/field">username</td> </tr> <tr> <th i18n:translate="">Login Password</th> <td tal:content="structure context/password/field">password</td> </tr> <tr> <th i18n:translate="">Confirm Password</th> <td tal:content="structure context/password/confirm">password</td> </tr> <tr tal:condition="python:request.user.hasPermission('Web Roles')"> <th i18n:translate="">Roles</th> <td tal:condition="context/id" tal:content="structure context/roles/field">roles</td> <td tal:condition="not:context/id"> <input name="roles" tal:attributes="value db/config/NEW_WEB_USER_ROLES"> </td> </tr> <tr> <th i18n:translate="">E-mail address</th> <td tal:content="structure context/address/field">address</td> </tr> <tr> <th i18n:translate="">Alternate E-mail addresses<br>One address per line</th> <td tal:content="structure context/alternate_addresses/multiline">alternate_addresses</td> </tr> <tr> <td> <input type="hidden" name="@required" value="username,address"> <input type="hidden" name="@template" value="item"> </td> <td tal:content="structure context/submit">submit button here</td> </tr> </table> </form> <table class="form" tal:condition="context/is_only_view_ok"> <tr> <th i18n:translate="">Login Name</th> <td tal:content="context/username">username</td> </tr> <tr> <th i18n:translate="">E-mail address</th> <td tal:content="context/address/email">address</td> </tr> </table> <tal:block tal:condition="python:context.id and context.is_view_ok()" tal:replace="structure context/history" /> </td> </tal:block>
