17 lines
288 B
Plaintext
17 lines
288 B
Plaintext
|
|
@{
|
|
ViewBag.Title = "Appointments";
|
|
Layout = "~/Views/Shared/_Layout.cshtml";
|
|
}
|
|
|
|
@if (ViewBag.tip != null) {
|
|
<div class="alert alert-success" role="alert">
|
|
@ViewBag.tip
|
|
</div>
|
|
}
|
|
|
|
<h2>Appointments</h2>
|
|
|
|
<ul>
|
|
<li><a href="./Create">Make a new appointment</a></li>
|
|
</ul> |