yavsc/Yavsc/Views/Administration/Role.cshtml

15 lines
252 B
Plaintext

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

@model RoleUserCollection
@{ 
ViewBag.Title = SR["Role"]+" "+Model.Name;
}
<h2>@ViewBag.Title</h2>
<ul>
@foreach (var user in Model.Users) {
<li> <img src="~/Avatars/@(user.UserName).xs.png" alt="avatar"/>
@user.UserName
</li>
}
</ul>