1.7.24. 초대 드롭 (위로)

 Email: {{ invitation.email }}


<tr id="invitation_{{ invitation.id }}">
  <td> {{ invitation.email }} </td>
  <td> {{ invitation.sent_at | date: i18n.short_date }} </td>
  <td>
    {% if invitation.accepted? %}
      yes, on {{invitation.accepted_at | format: i18n.short_date }}
    {% else %}
      no
    {% endif %}
  </td>
</tr>

1.7.24.1. 방법

1.7.24.1.1. 오류

제출 실패 후 이 모델 형식이 렌더링되면 발생한 오류를 반환합니다.

{{ invitation.errors.name | inline_errors }}
1.7.24.1.2. email

이메일 주소 반환

1.7.24.1.3. 수락하시겠습니까?

초대가 승인된 경우 true를 반환합니다.

1.7.24.1.4. accepted_at

초대가 승인된 경우 날짜를 반환합니다.

{{ invitation.accepted_at | date: i18n.short_date }}
1.7.24.1.5. sent_at

생성 날짜를 반환합니다.

{{ invitation.sent_at | date: i18n.short_date }}
1.7.24.1.6. resend_url

초대를 다시 보내기 위해 URL을 반환합니다.

{{ "Resend" | update_button: invitation.resend_url}}
1.7.24.1.7. url

리소스 URL 반환

{{ "Delete" | delete_button: invitation.url }}