| | | 1 | | @page "/myapplications" |
| | | 2 | | |
| | | 3 | | @inject MUNity.Database.Context.MunityContext dbContext |
| | | 4 | | @inject Services.ConferenceApplicationService applicationSerivce |
| | | 5 | | |
| | | 6 | | <AuthorizeView> |
| | | 7 | | <Authorized> |
| | | 8 | | <h3>Anmeldungen/Bewerbungen</h3> |
| | | 9 | | <ul> |
| | 0 | 10 | | @foreach(var application in applicationSerivce.GetApplicationsOfUser(context.User)) |
| | 0 | 11 | | { |
| | 0 | 12 | | <li><a href="@($"/conference/application/review/{application.ApplicationId}")">Bewerbung für: @applicati |
| | 0 | 13 | | } |
| | | 14 | | </ul> |
| | | 15 | | |
| | | 16 | | </Authorized> |
| | | 17 | | <NotAuthorized> |
| | | 18 | | <p>Sie müssen angemeldet sein um diese Seite zu verwenden.</p> |
| | | 19 | | </NotAuthorized> |
| | | 20 | | </AuthorizeView> |
| | | 21 | | |
| | | 22 | | |
| | | 23 | | @code { |
| | | 24 | | |
| | | 25 | | |
| | | 26 | | } |