1.7.2. AccountPlan 드롭 (위로)
예제: 유동 계정 계획 삭제 사용
<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. 기능
사용 가능한 기능의 배열을 반환합니다.
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
계획의 월 고정 요금을 반환합니다.