[REF] base, wesbite_crm: remove placeholder for phone

Some people visiting website doesn't understand that it's a
placeholder and call to Odoo because they see the number on the website.
This commit is contained in:
Jeremy Kersten 2015-07-02 15:51:55 +02:00
parent e69a9b1ea8
commit f07be4b675
3 changed files with 5 additions and 5 deletions

View File

@ -14,7 +14,7 @@
<div t-attf-class="form-group #{error and 'phone' in error and 'has-error' or ''}">
<label class="col-md-3 col-sm-4 control-label" for="phone">Phone Number</label>
<div class="col-md-7 col-sm-8">
<input type="text" class="form-control" name="phone" placeholder="e.g. (+32).81.81.37.00" t-attf-value="#{phone or ''}"/>
<input type="text" class="form-control" name="phone" t-attf-value="#{phone or ''}"/>
</div>
</div>
<div name="email_from_container" t-attf-class="form-group #{error and 'email_from' in error and 'has-error' or ''}">

View File

@ -177,7 +177,7 @@
<group>
<field name="function" placeholder="e.g. Sales Director"
attrs="{'invisible': [('is_company','=', True)]}"/>
<field name="phone" placeholder="e.g. +32.81.81.37.00"/>
<field name="phone"/>
<field name="mobile"/>
<field name="fax"/>
<field name="user_ids" invisible="1"/>

View File

@ -150,9 +150,9 @@
<div attrs="{'invisible': [('id', '>', 0)]}">
<field name="groups_id" readonly="1" widget="many2many_tags" style="display: inline;"/> You will be able to define additional access rights by editing the newly created user under the Settings / Users menu.
</div>
<field name="phone" placeholder="e.g. +32.81.81.37.00"/>
<field name="mobile" placeholder="e.g. +32.479.19.28.37"/>
<field name="fax" placeholder="e.g. +32.81.81.37.10"/>
<field name="phone"/>
<field name="mobile"/>
<field name="fax"/>
</group>
</sheet>
</form>