aufteilung zwischen Planung und Meetings
This commit is contained in:
@@ -180,7 +180,7 @@ require_once '../inc/header.php';
|
|||||||
<h4 class="mb-0"><?php echo $edit_mode ? 'Termin bearbeiten' : 'Neuen Termin hinzufügen'; ?></h4>
|
<h4 class="mb-0"><?php echo $edit_mode ? 'Termin bearbeiten' : 'Neuen Termin hinzufügen'; ?></h4>
|
||||||
</div>
|
</div>
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<form action="meetings.php" method="post">
|
<form action="planning.php" method="post">
|
||||||
<?php if ($edit_mode): ?>
|
<?php if ($edit_mode): ?>
|
||||||
<input type="hidden" name="id" value="<?php echo htmlspecialchars($edit_meeting['id']); ?>">
|
<input type="hidden" name="id" value="<?php echo htmlspecialchars($edit_meeting['id']); ?>">
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
@@ -212,7 +212,7 @@ require_once '../inc/header.php';
|
|||||||
<?php echo $edit_mode ? 'Speichern' : 'Hinzufügen'; ?>
|
<?php echo $edit_mode ? 'Speichern' : 'Hinzufügen'; ?>
|
||||||
</button>
|
</button>
|
||||||
<?php if ($edit_mode): ?>
|
<?php if ($edit_mode): ?>
|
||||||
<a href="meetings.php" class="btn btn-sm btn-outline-secondary w-auto">Abbrechen</a>
|
<a href="planning.php" class="btn btn-sm btn-outline-secondary w-auto">Abbrechen</a>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -249,10 +249,10 @@ require_once '../inc/header.php';
|
|||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<a href="meetings.php?action=edit&id=<?php echo htmlspecialchars($meeting['id']); ?>" class="text-dark me-1 text-decoration-none" data-bs-toggle="tooltip" data-bs-placement="top" title="Bearbeiten">
|
<a href="planning.php?action=edit&id=<?php echo htmlspecialchars($meeting['id']); ?>" class="text-dark me-1 text-decoration-none" data-bs-toggle="tooltip" data-bs-placement="top" title="Bearbeiten">
|
||||||
<span class="material-icons">mode_edit_outline</span>
|
<span class="material-icons">mode_edit_outline</span>
|
||||||
</a>
|
</a>
|
||||||
<a href="meetings.php?action=delete&id=<?php echo htmlspecialchars($meeting['id']); ?>" class="text-danger text-decoration-none" onclick="return confirm('Sind Sie sicher, dass Sie diesen Termin löschen möchten?');" data-bs-toggle="tooltip" data-bs-placement="top" title="Löschen">
|
<a href="planning.php?action=delete&id=<?php echo htmlspecialchars($meeting['id']); ?>" class="text-danger text-decoration-none" onclick="return confirm('Sind Sie sicher, dass Sie diesen Termin löschen möchten?');" data-bs-toggle="tooltip" data-bs-placement="top" title="Löschen">
|
||||||
<span class="material-icons">delete_outline</span>
|
<span class="material-icons">delete_outline</span>
|
||||||
</a>
|
</a>
|
||||||
</td>
|
</td>
|
||||||
@@ -1,6 +1,7 @@
|
|||||||
|
/* --- Basis-Layout-Regeln --- */
|
||||||
body {
|
body {
|
||||||
background-color: #e6e6e6ff;
|
background-color: #e6e6e6ff;
|
||||||
padding-top: 40px; /* Anpassen an die Höhe Ihres Menüs */
|
padding-top: 56px !important; /* Korrigiert, um Platz für das Menü zu schaffen */
|
||||||
}
|
}
|
||||||
|
|
||||||
.container {
|
.container {
|
||||||
@@ -14,6 +15,7 @@ pre {
|
|||||||
white-space: pre-wrap;
|
white-space: pre-wrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* --- App-spezifische Stile --- */
|
||||||
.color-preview {
|
.color-preview {
|
||||||
width: 30px;
|
width: 30px;
|
||||||
height: 30px;
|
height: 30px;
|
||||||
@@ -24,7 +26,7 @@ pre {
|
|||||||
.material-symbols-outlined {
|
.material-symbols-outlined {
|
||||||
font-variation-settings:
|
font-variation-settings:
|
||||||
'FILL' 0,
|
'FILL' 0,
|
||||||
'wght' 100, /* Wert von 100 bis 700, je niedriger, desto dünner */
|
'wght' 100,
|
||||||
'GRAD' 0,
|
'GRAD' 0,
|
||||||
'opsz' 24
|
'opsz' 24
|
||||||
}
|
}
|
||||||
@@ -10,7 +10,7 @@
|
|||||||
<a class="nav-link d-flex active" aria-current="page" href="../index.php"><span class="material-icons md-18 me-1">home</span>Dashboard</a>
|
<a class="nav-link d-flex active" aria-current="page" href="../index.php"><span class="material-icons md-18 me-1">home</span>Dashboard</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
<a class="nav-link d-flex" href="#"><span class="material-icons md-18 me-1">calendar_month</span>Termine</a>
|
<a class="nav-link d-flex" href="../meeting.php"><span class="material-icons md-18 me-1">calendar_month</span>Termine</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
<a class="nav-link d-flex" href="#"><span class="material-icons md-18 me-1">bar_chart</span>Auswertung</a>
|
<a class="nav-link d-flex" href="#"><span class="material-icons md-18 me-1">bar_chart</span>Auswertung</a>
|
||||||
@@ -25,7 +25,7 @@
|
|||||||
<a class="nav-link d-flex align-items-center dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown"><span class="material-icons md-18 me-1">admin_panel_settings</span>Admin</a>
|
<a class="nav-link d-flex align-items-center dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown"><span class="material-icons md-18 me-1">admin_panel_settings</span>Admin</a>
|
||||||
<ul class="dropdown-menu">
|
<ul class="dropdown-menu">
|
||||||
<li><a class="dropdown-item" href="../admin/colors.php">Farben</a></li>
|
<li><a class="dropdown-item" href="../admin/colors.php">Farben</a></li>
|
||||||
<li><a class="dropdown-item" href="../admin/meetings.php">Termine</a></li>
|
<li><a class="dropdown-item" href="../admin/planning.php">nächsten Termine</a></li>
|
||||||
<li><a class="dropdown-item" href="../admin/users.php">Benutzer</a></li>
|
<li><a class="dropdown-item" href="../admin/users.php">Benutzer</a></li>
|
||||||
<li><a class="dropdown-item" href="../admin/check_session.php">Session prüfen</a></li>
|
<li><a class="dropdown-item" href="../admin/check_session.php">Session prüfen</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|||||||
Reference in New Issue
Block a user