1.7.2. 계정 계획 드롭 (up)
예: 유동에서 계정 계획 감소 사용
<p class="notice">The examples for plan drop apply here</p>
1.7.2.1. 방법
1.7.2.1.1. 선택된 상태?
계획이 선택되어 있는지 여부를 반환합니다.
{% if plan.selected? %} <p>You will signup to {{ plan.name }}</p> {% endif %}
1.7.2.1.2. 구매하셨습니까?
계획이 구매되었는지 여부를 반환합니다.
{% if plan.bought? %} <p>You are on this plan already!</p> {% endif %}
1.7.2.1.3. 기능
사용 가능한 기능 배열을 반환합니다.Returns an array of available features.
1.7.2.1.4. setup_fee
설정 값을 반환합니다.
1.7.2.1.5. name
계획의 이름을 반환합니다.
<h2>We offer you a new {{ plan.name }} plan!</h2>
1.7.2.1.6. system_name
계획의 시스템 이름을 반환합니다.
{% for plan in available_plans %} {% if plan.system_name == 'my_free_plan' %} <p>You will buy our only free plan!</p> {% endif %} {% endfor %}
1.7.2.1.7. id
계획 ID를 반환합니다.
1.7.2.1.8. 무료?
이 계획은 유 료
가 아닌 경우 무료입니다. 유 료? 방법을 참조하십시오.
{% if plan.free? %} <p>This plan is free of charge.</p> {% else %} <p>Plan costs</p> Setup fee {{ plan.setup_fee }} Flat cost {{ plan.flat_cost }} {% endif %}
1.7.2.1.9. 유료?
이 계획은 0이 아닌 고정 또는 설정 수수료가 있거나 일부 가격 규칙이 있는 경우 지불됩니다.
{% if plan.paid? %} <p>this plan is a paid one.</p> {% else %} <p>this plan is a free one.</p> {% endif %}
1.7.2.1.10. approval_required?
계획이 승인이 필요한지 여부를 반환합니다.
{% if plan.approval_required? %} <p>This plan requires approval.</p> {% endif %}
1.7.2.1.11. flat_cost
계획의 월 고정 요금을 반환합니다.