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 }}