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.

38 lines
1.7 KiB

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