1.7.48. SERVICEPLAN 드롭 (업)
1.7.48.1. 방법
1.7.48.1.1. 선택된 상태?
계획이 선택되어 있는지 여부를 반환합니다.
{% if plan.selected? %}
<p>You will signup to {{ plan.name }}</p>
{% endif %}1.7.48.1.2. 구매하셨습니까?
계획이 구매되었는지 여부를 반환합니다.
{% if plan.bought? %}
<p>You are on this plan already!</p>
{% endif %}1.7.48.1.3. 기능
계획의 눈에 띄는 기능을 반환합니다.
{% if plan == my_free_plan %}
<p>These plans are the same.</p>
{% else %}
<p>These plans are not the same.</p>
{% endif %}1.7.48.1.4. setup_fee
계획의 설정 값을 반환합니다.
1.7.48.1.5. name
계획의 이름을 반환합니다.
<h2>We offer you a new {{ plan.name }} plan!</h2>1.7.48.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.48.1.7. id
계획 ID를 반환합니다.
1.7.48.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.48.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.48.1.10. approval_required?
계획이 승인이 필요한지 여부를 반환합니다.
{% if plan.approval_required? %}
<p>This plan requires approval.</p>
{% endif %}1.7.48.1.11. flat_cost
계획의 월 고정 요금을 반환합니다.
1.7.48.1.12. service
예: 유동에서 서비스 계획 감소 사용
<p class="notice">The examples for plan drop apply here</p>
Service of this plan {{ plan.service.name }}