[Python-checkins] r88948 - in tracker/instances/python-dev/html: user.index.html user.item.html user.openid.html user.register.html
martin.v.loewis
python-checkins at python.org
Wed Apr 18 13:20:43 CEST 2012
Author: martin.v.loewis
Date: Wed Apr 18 13:20:42 2012
New Revision: 88948
Log:
Issue #342: Remove phone number from UI.
Modified:
tracker/instances/python-dev/html/user.index.html
tracker/instances/python-dev/html/user.item.html
tracker/instances/python-dev/html/user.openid.html
tracker/instances/python-dev/html/user.register.html
Modified: tracker/instances/python-dev/html/user.index.html
==============================================================================
--- tracker/instances/python-dev/html/user.index.html (original)
+++ tracker/instances/python-dev/html/user.index.html Wed Apr 18 13:20:42 2012
@@ -49,7 +49,6 @@
<th i18n:translate="">Real name</th>
<th i18n:translate="">Organisation</th>
<th i18n:translate="">Email address</th>
- <th i18n:translate="">Phone number</th>
<th tal:condition="context/is_edit_ok" i18n:translate="">Retire</th>
</tr>
<tal:block repeat="user batch">
@@ -61,7 +60,6 @@
<td tal:content="python:user.realname.plain() or default"> </td>
<td tal:content="python:user.organisation.plain() or default"> </td>
<td tal:content="python:user.address.email() or default"> </td>
- <td tal:content="python:user.phone.plain() or default"> </td>
<td tal:condition="context/is_retire_ok">
<form style="padding:0" method="post"
tal:attributes="action string:user${user/id}">
Modified: tracker/instances/python-dev/html/user.item.html
==============================================================================
--- tracker/instances/python-dev/html/user.item.html (original)
+++ tracker/instances/python-dev/html/user.item.html Wed Apr 18 13:20:42 2012
@@ -90,11 +90,6 @@
</tr>
</tal:if>
- <tr tal:define="name string:phone; label string:Phone; value context/phone">
- <th metal:use-macro="th_label">Phone</th>
- <td><input name="phone" metal:use-macro="normal_input"></td>
- </tr>
-
<tr tal:define="name string:organisation; label string:Organisation; value context/organisation">
<th metal:use-macro="th_label">Organisation</th>
<td><input name="organisation" metal:use-macro="normal_input"></td>
Modified: tracker/instances/python-dev/html/user.openid.html
==============================================================================
--- tracker/instances/python-dev/html/user.openid.html (original)
+++ tracker/instances/python-dev/html/user.openid.html Wed Apr 18 13:20:42 2012
@@ -41,10 +41,6 @@
</td>
</tr>
<tr>
- <th i18n:translate="">Phone</th>
- <td tal:content="structure context/phone/field">phone</td>
- </tr>
- <tr>
<th i18n:translate="">Organisation</th>
<td tal:content="structure context/organisation/field">organisation</td>
</tr>
Modified: tracker/instances/python-dev/html/user.register.html
==============================================================================
--- tracker/instances/python-dev/html/user.register.html (original)
+++ tracker/instances/python-dev/html/user.register.html Wed Apr 18 13:20:42 2012
@@ -45,10 +45,6 @@
</td>
</tr>
<tr>
- <th i18n:translate="">Phone</th>
- <td tal:content="structure context/phone/field">phone</td>
- </tr>
- <tr>
<th i18n:translate="">Organisation</th>
<td tal:content="structure context/organisation/field">organisation</td>
</tr>
More information about the Python-checkins
mailing list