1.7. 드롭 (위로)


1.7.1. 계정 삭제 (위로)

개발자 계정. 이메일 주소 또는 유사한 정보를 찾는 경우 User drop을 참조하십시오.

<h2>Account organization name {{ current_account.name }}</h2>
Plan {{ current_account.bought_account_plan.name }}
Telephone {{ current_account.telephone_number }}

{{ current_account.fields_plain_text }}
{{ current_account.extra_fields_plain_text }}

{% if current_account.approval_required? %}
   <p>This account requires approval.</p>
{% endif %}

{% if current_account.credit_card_required? %}

  {% if current_account.credit_card_stored? %}
    <p>This account has credit card details stored in database.</p>
  {% else %}
    <p>Please enter your {{ 'credit card details' | link_to: urls.payment_details }}.</p>
  {% endif %}

  {% if current_account.credit_card_missing? %}
    <p>This account has no credit card details stored in database.</p>
  {% endif %}
{% endif %}

1.7.1.1. 방법

1.7.1.1.1. 오류

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

{{ account.errors.name | inline_errors }}
1.7.1.1.2. id

계정의 ID를 반환합니다.

1.7.1.1.3. name

개발자 계정의 조직 이름을 반환합니다.

1.7.1.1.4. vat_zero_text

vat 0에 대한 텍스트 반환

1.7.1.1.5. vat_rate

vat 비율 반환

1.7.1.1.6. unread_messages

읽지 않는 메시지

1.7.1.1.7. latest_messages

최신 메시지 반환

1.7.1.1.8. bought_account_plan

계정이 계약한 계획을 반환합니다.

1.7.1.1.9. bought_account_contract

계약 계정을 반환합니다.

1.7.1.1.10. credit_card_display_number
1.7.1.1.11. credit_card_expiration_date
1.7.1.1.12. credit_card_required?

계정이 신용 카드 세부 정보를 입력해야 하는지 여부를 반환합니다.

1.7.1.1.13. credit_card_stored?

계정에 신용 카드 세부 정보가 저장되었는지 여부를 반환합니다.

1.7.1.1.14. credit_card_missing?

계정에 신용 카드 세부 정보가 저장되지 않았는지 반환합니다.

1.7.1.1.15. 시간대

이 계정의 시간대 반환

1.7.1.1.17. on_trial?

해당 계정이 시험 기간에 있는지 여부를 반환합니다. 즉, 모든 유료 계약은 시험 기간에 있어야 합니다.

1.7.1.1.18. telephone_number

계정의 전화 번호를 반환합니다

1.7.1.1.19. approval_required?

계정에 승인이 필요한지 여부를 반환합니까?

1.7.1.1.20. created_at

계정 생성 (등록)의 UNIX 타임 스탬프를 반환합니다. 예: 타임스탬프를 JavaScript 날짜로 변환

<script>
  var data = new Date({{ account.created_at }} * 1000);
</script>
1.7.1.1.21. full_address

법적 주소, 도시 및 상태로 구성 가능

1.7.1.1.22. 애플리케이션

계정의 애플리케이션을 반환합니다.

1.7.1.1.23. subscribed_services

ServiceContract 드롭으로 배열 반환

1.7.1.1.24. admin

이 계정의 admin 사용자를 반환합니다.

1.7.1.1.25. extra_fields_plain_text

계정에 정의된 추가 필드를 일반 텍스트로 반환합니다.

1.7.1.1.26. fields_plain_text

계정에 정의된 필드를 일반 텍스트로 반환합니다.

1.7.1.1.27. extra_fields

이 계정의 값이 있는 추가 필드만 반환합니다. Example: 모든 추가 필드 인쇄

{% for field in account.extra_fields %}
  {{ field.label }}: {{ field.value }}
{% endfor %}
1.7.1.1.28. 필드

모든 필드를 이 계정 Example의 값으로 반환합니다. 모든 필드 인쇄

{% for field in account.fields %}
  {{ field.label }}: {{ field.value }}
{% endfor %}
1.7.1.1.29. builtin_fields
1.7.1.1.30. multiple_applications_allowed?
1.7.1.1.31. billing_address

이 계정의 청구 주소를 반환합니다.

1.7.1.1.32. has_billing_address?

이 계정에 청구 주소가 있는지 여부를 반환합니다.

1.7.1.1.33. 가능

권한 방법에 대한 액세스 권한 부여

{% if account.can.be_deleted? %}
  <!-- do something -->
{% endif %}
1.7.1.1.34. edit_url
1.7.1.1.35. edit_ogone_billing_address_url
1.7.1.1.36. edit_payment_express_billing_address_url
1.7.1.1.37. edit_braintree_blue_credit_card_details_url
1.7.1.1.38. domain
1.7.1.1.39. 업그레이드되었습니까?
1.7.1.1.40. requires_credit_card?
1.7.1.1.41. 지원_이메일
1.7.1.1.42. finance_support_email
Red Hat logoGithubRedditYoutubeTwitter

자세한 정보

평가판, 구매 및 판매

커뮤니티

Red Hat 문서 정보

Red Hat을 사용하는 고객은 신뢰할 수 있는 콘텐츠가 포함된 제품과 서비스를 통해 혁신하고 목표를 달성할 수 있습니다.

보다 포괄적 수용을 위한 오픈 소스 용어 교체

Red Hat은 코드, 문서, 웹 속성에서 문제가 있는 언어를 교체하기 위해 최선을 다하고 있습니다. 자세한 내용은 다음을 참조하세요.Red Hat 블로그.

Red Hat 소개

Red Hat은 기업이 핵심 데이터 센터에서 네트워크 에지에 이르기까지 플랫폼과 환경 전반에서 더 쉽게 작업할 수 있도록 강화된 솔루션을 제공합니다.

© 2024 Red Hat, Inc.