Änderung der Version und Anpassen der Anzeige der events für mobil und pcs
This commit is contained in:
@ -19,7 +19,37 @@ else
|
|||||||
<p>@Status</p>
|
<p>@Status</p>
|
||||||
@if (@_EventRegistrations.Count != 0)
|
@if (@_EventRegistrations.Count != 0)
|
||||||
{
|
{
|
||||||
<Pager Items="@_EventRegistrations">
|
|
||||||
|
<div class="event-list">
|
||||||
|
<div class="event-list">
|
||||||
|
@foreach (var context in _EventRegistrations)
|
||||||
|
{
|
||||||
|
<div class="event-card">
|
||||||
|
<h3>@context.Name</h3>
|
||||||
|
<p><strong>@Localizer["Date"]:</strong> @context.EventDate.ToLocalTime()</p>
|
||||||
|
<p><strong>@Localizer["Location"]:</strong> @context.Location</p>
|
||||||
|
|
||||||
|
<div class="event-actions">
|
||||||
|
<ActionLink Action="Edit"
|
||||||
|
Parameters="@($"id={context.EventId}")"
|
||||||
|
ResourceKey="Edit" />
|
||||||
|
|
||||||
|
<ActionDialog Action="Delete"
|
||||||
|
Security="SecurityAccessLevel.Edit"
|
||||||
|
Class="btn btn-danger"
|
||||||
|
OnClick="@(() => Delete(context))"
|
||||||
|
ResourceKey="Delete"
|
||||||
|
Id="@context.EventId.ToString()" />
|
||||||
|
|
||||||
|
<ActionLink Action="Details"
|
||||||
|
Parameters="@($"id={context.EventId}")"
|
||||||
|
ResourceKey="Details" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
/* <Pager Items="@_EventRegistrations">
|
||||||
<Header>
|
<Header>
|
||||||
<th style="width: 1px;"> </th>
|
<th style="width: 1px;"> </th>
|
||||||
<th style="width: 1px;"> </th>
|
<th style="width: 1px;"> </th>
|
||||||
@ -36,7 +66,7 @@ else
|
|||||||
<td>@context.Location</td>
|
<td>@context.Location</td>
|
||||||
<td><ActionLink Action="Details" Parameters="@($"id=" + context.EventId.ToString())" ResourceKey="Details"/></td>
|
<td><ActionLink Action="Details" Parameters="@($"id=" + context.EventId.ToString())" ResourceKey="Details"/></td>
|
||||||
</Row>
|
</Row>
|
||||||
</Pager>
|
</Pager>*/
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|||||||
@ -15,9 +15,9 @@
|
|||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="9.0.5" />
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="9.0.5" />
|
||||||
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Authentication" Version="9.0.5" />
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Authentication" Version="9.0.5" />
|
||||||
<PackageReference Include="Microsoft.Extensions.Localization" Version="9.0.3" />
|
<PackageReference Include="Microsoft.Extensions.Localization" Version="9.0.5" />
|
||||||
<PackageReference Include="Microsoft.Extensions.Http" Version="9.0.3" />
|
<PackageReference Include="Microsoft.Extensions.Http" Version="9.0.5" />
|
||||||
<PackageReference Include="System.Net.Http.Json" Version="9.0.3" />
|
<PackageReference Include="System.Net.Http.Json" Version="9.0.5" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|||||||
@ -19,10 +19,10 @@
|
|||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="9.0.5" />
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="9.0.8" />
|
||||||
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="9.0.5" />
|
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="9.0.8" />
|
||||||
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.5" />
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.8" />
|
||||||
<PackageReference Include="Microsoft.Extensions.Localization" Version="9.0.5" />
|
<PackageReference Include="Microsoft.Extensions.Localization" Version="9.0.8" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|||||||
@ -5,4 +5,42 @@
|
|||||||
|
|
||||||
.mt-3 {
|
.mt-3 {
|
||||||
margin-top: 3rem;
|
margin-top: 3rem;
|
||||||
|
}
|
||||||
|
.event-list {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
gap: 1.5rem;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.event-card {
|
||||||
|
/*background-color: var(--bs-gray-dark); */
|
||||||
|
border: 2px solid rgb(var(--bs-primary-rgb)); /* Umrandung */
|
||||||
|
border-radius: 12px;
|
||||||
|
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
|
||||||
|
padding: 1.5rem;
|
||||||
|
width: 280px;
|
||||||
|
/* color: #ddd; */
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.event-card:hover {
|
||||||
|
border-color: #66ccff; /* Heller beim Hover */
|
||||||
|
transform: translateY(-4px);
|
||||||
|
box-shadow: 0 6px 14px rgba(0, 0, 0, 0.5);
|
||||||
|
}
|
||||||
|
|
||||||
|
.event-card h3 {
|
||||||
|
margin-top: 0;
|
||||||
|
margin-bottom: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.event-card p {
|
||||||
|
margin: 0.2rem 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.event-actions {
|
||||||
|
margin-top: 1rem;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user