1.7.16. CurrentUser drop (up)


1.7.16.1. 方法

1.7.16.1.1. 错误

如果在提交失败后呈现此模型,这将返回发生的错误。

{{ current_user.errors.name | inline_errors }}
1.7.16.1.2. admin?

返回用户是否为 admin。

{% if user.admin? %}
  <p>You are an admin of your account.</p>
{% endif %}
1.7.16.1.3. username

返回用户的用户名(html 转意)。

1.7.16.1.4. account

返回用户的帐户。

1.7.16.1.5. name

返回用户的名和姓。

1.7.16.1.6. email

返回用户的电子邮件。

1.7.16.1.7. password_required?

对于使用内置的 Developer Portal 认证机制的用户返回 true,对于经过 Janrain, CAS 或其他单点登陆方法的用户返回 false

{{ if user.password_required? }}


{{ endif }}
1.7.16.1.8. 部分

返回用户有权访问的部分列表。

{% if user.sections.size > 0 %}
  <p>You can access following sections of our portal:</p>
   <ul>
    {% for section in user.sections %}
      <li>{{ section }}</li>
    {% endfor %}
  </ul>
{% endif %}
1.7.16.1.9. role

返回用户的角色

1.7.16.1.10. roles_collection

重新调整用户的可用角色列表

{% for role in user.roles_collection %}
  <li>
    <label for="user_role_{{ role.key }}">

      {{ role.text&nbsp;}}
    </label>
    </li>
  {% endfor %}
1.7.16.1.11. url

返回用户的资源 URL

{{ 'Delete' | delete_button: user.url }}
1.7.16.1.12. edit_url

返回 URL 以编辑用户

{{ 'Edit' | link_to: user.edit_url, title: 'Edit', class: 'action edit' }}
1.7.16.1.13. can

公开当前用户根据您的设置和用户角色的权利。您可以在返回的对象上调用这些方法:

  • requests_user?
  • create_application?
  • see_log_requests?
{% if current_user.can.see_log_requests? and application.log_requests? %}
   (<a href="{{ application.log_requests_url }}" class="action edit">App Request Log</a>)
{% endif %}
1.7.16.1.14. extra_fields

返回非隐藏的额外字段以及这个用户示例的值:打印所有额外字段

{% for field in user.extra_fields %}
  {{ field.label }}: {{ field.value }}
{% endfor %}
1.7.16.1.15. fields

返回所有包含此用户示例值的字段:打印所有字段

{% for field in user.fields %}
  {{ field.label }}: {{ field.value }}
{% endfor %}
1.7.16.1.16. builtin_fields

返回所有带有此用户值的内置字段

Red Hat logoGithubRedditYoutubeTwitter

学习

尝试、购买和销售

社区

关于红帽文档

通过我们的产品和服务,以及可以信赖的内容,帮助红帽用户创新并实现他们的目标。

让开源更具包容性

红帽致力于替换我们的代码、文档和 Web 属性中存在问题的语言。欲了解更多详情,请参阅红帽博客.

關於紅帽

我们提供强化的解决方案,使企业能够更轻松地跨平台和环境(从核心数据中心到网络边缘)工作。

© 2024 Red Hat, Inc.