Besciamello (#1)
* Fixed login & auth * Added dynamic breadcrumb * Added DOC * Added Patient * Added Notifications * Added Messages * Refactoring api * Re-writed menu * Removed unused things * Created README
This commit was merged in pull request #1.
This commit is contained in:
committed by
GitHub
parent
191daf8218
commit
1246116804
@@ -3,7 +3,15 @@
|
||||
var action = ViewContext.RouteData.Values["Action"];
|
||||
}
|
||||
|
||||
<ol class="breadcrumb">
|
||||
<li><a href="/"><i class="fa fa-dashboard"></i> @controller</a></li>
|
||||
<li class="active">@action</li>
|
||||
</ol>
|
||||
<div class="breadcrumb">
|
||||
@Html.ActionLink("Home", "Index", "Home")
|
||||
@if (controller.ToString() != "Home")
|
||||
{
|
||||
@:> @Html.ActionLink(controller.ToString(), "Index", controller.ToString())
|
||||
}
|
||||
@if (action.ToString() != "Index")
|
||||
{
|
||||
@:> @Html.ActionLink(action.ToString(), action.ToString(), controller.ToString())
|
||||
}
|
||||
|
||||
</div>
|
||||
Reference in New Issue
Block a user