1.7.27. LineItem 드롭 (위로)
1.7.27.1. 방법
1.7.27.1.1. 오류
제출 실패 후 이 모델 형식이 렌더링되면 발생한 오류를 반환합니다.
{{ line_item.errors.name | inline_errors }}
1.7.27.1.2. name
{% for line_item in invoice.line_items %} <tr class="line_item {% cycle 'odd', 'even' %}"> <th>{{ line_item.name }}</th> <td>{{ line_item.description }}</td> <td>{{ line_item.quantity }}</td> <td>{{ line_item.cost }}</td> </tr> {% endfor %}