@inherits Custom.Hybrid.Razor14
<!-- unimportant stuff, hidden -->
Interface ICmsUser Get information about... <!-- unimportant stuff, hidden -->
<h3>The .Id attribute:</h3>
The id of the current user:
<strong>
@CmsContext.User.Id
</strong>
<h3>The .IsSiteAdmin attribute:</h3>
Check if the current user is a site admin (returns a boolean):
<strong>
@CmsContext.User.IsSiteAdmin
</strong>
<h3>The .IsSiteDeveloper attribute:</h3>
Check if the current user is a site developer (returns a boolean):
<strong>
@CmsContext.User.IsSiteDeveloper
</strong>
<h3>The .IsSystemAdmin attribute:</h3>
Check if the current user is a system admin (returns a boolean):
<strong>
@CmsContext.User.IsSystemAdmin
</strong>
<!-- unimportant stuff, hidden -->