Перейти к содержимому
Меню
Чтобы взаимодействовать с сообществом, необходимо зарегистрироваться.
Этот вопрос был отмечен
3 Ответы
9059 Представления

I'm experiencing Odoo v8 and I will login with Domain Username, not with email. So can you give me detailed information to how change just the label? The authentication is just fine, but with label "E-mail" may be kind of some misunderstanding to the other users.

I'm not a programmer, so a detailed information could be nice.

Thank you!

Аватар
Отменить
Лучший ответ

Go through these steps:

  1. Locate Menu User Interface/Views [Setting->Technical->User Interface->Views]

  2. Search Login

  3. Edit this template 

<?xml version="1.0"?> <t name="Login" t-name="web.login"> <t t-call="web.login_layout"> <form class="oe_login_form" role="form" t-attf-action="/web/login{{ '?debug' if debug else '' }}" method="post" onsubmit="this.action = this.action + location.hash"> <t t-call="web.database_select"/> <div class="form-group field-login"> <label for="login" class="control-label">Email/Domain</label>

<input type="text" name="login" t-att-value="login" id="login" class="form-control" required="required" autofocus="autofocus"/> </div> <div class="form-group field-password"> <label for="password" class="control-label">Password</label> <input type="password" name="password" id="password" class="form-control" required="required" t-att-autofocus="'autofocus' if login else None"/> </div> <p class="alert alert-danger" t-if="error"> <t t-esc="error"/> </p> <p class="alert alert-success" t-if="message"> <t t-esc="message"/> </p> <input type="hidden" name="redirect" t-att-value="redirect"/> <div class="clearfix oe_login_buttons"> <button type="submit" class="btn btn-primary">Log in</button> </div> </form> </t> </t>

Аватар
Отменить
Лучший ответ

The solution proposed overwrites the core. Is there any app to do this?

Аватар
Отменить
Автор Лучший ответ

Thanks a lot Mr. Sharma, you solved my question.

Аватар
Отменить
Related Posts Ответы Просмотры Активность
0
июн. 22
1683
0
янв. 21
2790
3
янв. 20
6690
0
нояб. 19
4869
2
мая 25
2897