Mercurial > p > roundup > code
changeset 6112:6059218287d3
Don't display Organiation or Phone on registration form.
We don't need them for registration. They are still available if
the user edits their entry. People that are using them can change
the fields, or add them if it is useful.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Fri, 28 Feb 2020 22:56:49 -0500 |
| parents | 240d78d23f92 |
| children | 7dffa7a5c047 |
| files | share/roundup/templates/classic/html/user.register.html |
| diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/share/roundup/templates/classic/html/user.register.html Thu Feb 27 22:00:24 2020 -0500 +++ b/share/roundup/templates/classic/html/user.register.html Fri Feb 28 22:56:49 2020 -0500 @@ -39,11 +39,11 @@ <input name="roles" tal:attributes="value db/config/NEW_WEB_USER_ROLES"> </td> </tr> - <tr> + <tr tal:condition="python:False"> <th i18n:translate="">Phone</th> <td tal:content="structure context/phone/field">phone</td> </tr> - <tr> + <tr tal:condition="python:False"> <th i18n:translate="">Organisation</th> <td tal:content="structure context/organisation/field">organisation</td> </tr>
