1.7.37. PlanFeature drop (up)
1.7.37.1. 방법
1.7.37.1.1. errors
실패한 제출 후 이 모델의 형식이 렌더링되면 발생한 오류가 반환됩니다.
{{ plan_feature.errors.name | inline_errors }}
1.7.37.1.2. name
특성의 이름을 반환합니다.Returns the name of the feature.
<h2>Feature {{ feature.name }}</h2>
1.7.37.1.3. description
기능에 대한 설명을 반환합니다.Returns the description of the feature.
1.7.37.1.4. has_description?
기능에 설명이 있는지 여부를 반환합니다.
{% if feature.has_description? %} {{ feature.description }} {% else %} This feature has no description. {% endif %}