Browse Source
Merge pull request #129 from coopiteasy/12.0-fix-emc_website-checkbox
[FIX] emc_website: Checkbox become cooperator form
pull/137/head
12.0-2020-11-10.00
Manuel Claeys Bouuaert
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
25 additions and
22 deletions
-
easy_my_coop_website/__manifest__.py
-
easy_my_coop_website/views/subscription_template.xml
|
|
@ -5,7 +5,7 @@ |
|
|
|
|
|
|
|
{ |
|
|
|
"name": "Easy My Coop Website", |
|
|
|
"version": "12.0.1.0.3", |
|
|
|
"version": "12.0.1.0.4", |
|
|
|
"depends": ["easy_my_coop", "website", "website_recaptcha_reloaded"], |
|
|
|
"author": "Coop IT Easy SCRLfs", |
|
|
|
"category": "Cooperative management", |
|
|
|
|
|
@ -440,14 +440,15 @@ |
|
|
|
Internal Rules |
|
|
|
</label> |
|
|
|
<div class="col-md-9 col-sm-8"> |
|
|
|
<div class="checkbox"> |
|
|
|
<label> |
|
|
|
<div class="form-check"> |
|
|
|
<input type="checkbox" |
|
|
|
name="internal_rules_approved" |
|
|
|
class="form-check-input" |
|
|
|
t-att-required="internal_rules_required" |
|
|
|
t-att-checked="internal_rules_approved"/> |
|
|
|
<div class="form-check-label"> |
|
|
|
<t t-raw="internal_rules_text"/> |
|
|
|
</label> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
@ -460,14 +461,15 @@ |
|
|
|
Policy |
|
|
|
</label> |
|
|
|
<div class="col-md-9 col-sm-8"> |
|
|
|
<div class="checkbox"> |
|
|
|
<label> |
|
|
|
<div class="form-check"> |
|
|
|
<input type="checkbox" |
|
|
|
name="data_policy_approved" |
|
|
|
class="form-check-input" |
|
|
|
t-att-required="data_policy_required" |
|
|
|
t-att-checked="data_policy_approved"/> |
|
|
|
<div class="form-check-label"> |
|
|
|
<t t-raw="data_policy_text"/> |
|
|
|
</label> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
@ -480,14 +482,15 @@ |
|
|
|
Financial Risk |
|
|
|
</label> |
|
|
|
<div class="col-md-9 col-sm-8"> |
|
|
|
<div class="checkbox"> |
|
|
|
<label> |
|
|
|
<div class="form-check"> |
|
|
|
<input type="checkbox" |
|
|
|
name="financial_risk_approved" |
|
|
|
class="form-check-input" |
|
|
|
t-att-required="financial_risk_required" |
|
|
|
t-att-checked="financial_risk_approved"/> |
|
|
|
<div class="form-check-label"> |
|
|
|
<t t-raw="financial_risk_text"/> |
|
|
|
</label> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|