| | 0 | 1 | | @if (Role != null) |
| | 0 | 2 | | { |
| | | 3 | | <div class="col-4"> |
| | | 4 | | <div class="card border-1 m-15px"> |
| | | 5 | | <div class="card-body"> |
| | 0 | 6 | | <h4 class="card-title">@Role.Name</h4> |
| | 0 | 7 | | <h6 class="card-subtitle mb-10px text-muted">Untersteht: @Role.ParentName</h6> |
| | | 8 | | <h6 class="card-subtitle mb-10px text-muted">Berechtigung: BERECHTIGUNGSNAME</h6> |
| | | 9 | | <h5 class="card-subtitle mb-10px text-muted">Eingesetzte Personen</h5> |
| | | 10 | | |
| | | 11 | | <div class="list-group"> |
| | 0 | 12 | | @if (Role.Participants != null && Role.Participants.Count > 0) |
| | 0 | 13 | | { |
| | 0 | 14 | | foreach (var participant in Role.Participants) |
| | 0 | 15 | | { |
| | 0 | 16 | | <a href="/u/@participant.ParticipantUsername" class="list-group-item">@participant.Participa |
| | 0 | 17 | | } |
| | 0 | 18 | | } |
| | | 19 | | |
| | | 20 | | <a href="#" class="list-group-item active">Person Hinzufügen</a> |
| | | 21 | | </div> |
| | | 22 | | </div> |
| | | 23 | | </div> |
| | | 24 | | </div> |
| | 0 | 25 | | } |
| | | 26 | | |
| | | 27 | | @code { |
| | 0 | 28 | | [Parameter] public MUNity.Schema.Conference.TeamRoleInfo Role { get; set; } |
| | | 29 | | } |