Mercurial > p > roundup > code
diff templates/minimal/html/user.register.html @ 2427:70e46f9dadfc
remove "real name", "phone" and "organisation"...
...not present in the minimal user class;
i18n markup
| author | Alexander Smishlajev <a1s@users.sourceforge.net> |
|---|---|
| date | Wed, 09 Jun 2004 09:48:37 +0000 |
| parents | 3a4abf6d48c2 |
| children | a9f6eb633452 |
line wrap: on
line diff
--- a/templates/minimal/html/user.register.html Wed Jun 09 09:20:01 2004 +0000 +++ b/templates/minimal/html/user.register.html Wed Jun 09 09:48:37 2004 +0000 @@ -1,17 +1,18 @@ <!-- 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" - tal:content="string:Registering with ${db/config/TRACKER_NAME}"></title> + i18n:translate="">Registering with <span i18n:name="tracker" + tal:replace="db/config/TRACKER_NAME" /></title> <span metal:fill-slot="body_title" tal:omit-tag="python:1" - tal:content="string:Registering with ${db/config/TRACKER_NAME}"></span> + i18n:translate="">Registering with <span i18n:name="tracker" + tal:replace="db/config/TRACKER_NAME" /></span> <td class="content" metal:fill-slot="content"> <tal:block tal:define=" editok python:request.user.username=='anonymous' and request.user.hasPermission('Web Registration')"> -<span tal:condition="python:not editok"> -You are not allowed to view this page. -</span> +<span tal:condition="python:not editok" + i18n:translate="">You are not allowed to view this page.</span> <tal:block tal:condition="editok"> <form method="POST" onSubmit="return submit_once()" enctype="multipart/form-data"> @@ -22,23 +23,19 @@ <table class="form"> <tr> - <th>Name</th> - <td tal:content="structure context/realname/field">realname</td> - </tr> - <tr> - <th>Login Name</th> + <th i18n:translate="">Login Name</th> <td tal:content="structure context/username/field">username</td> </tr> <tr> - <th>Login Password</th> + <th i18n:translate="">Login Password</th> <td tal:content="structure context/password/field">password</td> </tr> <tr> - <th>Confirm Password</th> + <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>Roles</th> + <th i18n:translate="">Roles</th> <td tal:condition="exists:item" tal:content="structure context/roles/field">roles</td> <td tal:condition="not:exists:item"> @@ -46,19 +43,11 @@ </td> </tr> <tr> - <th>Phone</th> - <td tal:content="structure context/phone/field">phone</td> - </tr> - <tr> - <th>Organisation</th> - <td tal:content="structure context/organisation/field">organisation</td> - </tr> - <tr> - <th>E-mail address</th> + <th i18n:translate="">E-mail address</th> <td tal:content="structure context/address/field">address</td> </tr> <tr> - <th>Alternate E-mail addresses<br>One address per line</th> + <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> @@ -66,7 +55,7 @@ <td> </td> <td> <input type="hidden" name=":action" value="register"> - <input type="submit" name="submit" value="Register"> + <input type="submit" name="submit" value="Register" i18n:attributes="value"> </td> </tr> </table>
