You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
1.3 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <data>
  4. <template id="subscription_i18n_ch" inherit_id="easy_my_coop.becomecooperator" name="Removing fields">
  5. <xpath expr="//label[@for='iban']/.." position="replace">
  6. <div t-attf-class="form-group #{error and 'iban' in error and 'has-error' or ''}">
  7. <label class="col-md-3 col-sm-4 control-label" for="iban">Bank Account Number</label>
  8. <div class="col-md-7 col-sm-8">
  9. <input type="text" class="form-control mandatory-field" name="iban" t-attf-value="#{iban or ''}" placeholder="BE48523080767127"/>
  10. </div>
  11. </div>
  12. </xpath>
  13. </template>
  14. <template id="company_subscription_i18n_ch" inherit_id="easy_my_coop.becomecompanycooperator" name="Company Removing fields">
  15. <xpath expr="//label[@for='iban']/.." position="replace">
  16. <div t-attf-class="form-group #{error and 'iban' in error and 'has-error' or ''}">
  17. <label class="col-md-3 col-sm-4 control-label" for="iban">Bank Account Number</label>
  18. <div class="col-md-7 col-sm-8">
  19. <input type="text" class="form-control mandatory-field" name="iban" t-attf-value="#{iban or ''}" placeholder="BE48523080767127"/>
  20. </div>
  21. </div>
  22. </xpath>
  23. </template>
  24. </data>
  25. </odoo>