hidden activity
This commit is contained in:
@ -35,6 +35,18 @@
|
||||
@RenderSection("header", required: false)
|
||||
</head>
|
||||
<body>
|
||||
@if (ViewData ["Notify"] != null) {
|
||||
foreach (Notification n in ViewData ["Notify"] as IEnumerable<Notification>) {
|
||||
<div class="alert alert-info alert-dismissable">
|
||||
<strong>@n.title</strong> @n.body
|
||||
@if (n.click_action!=null) {
|
||||
<a class="close" data-dismiss="alert" aria-label="close" onclick="notifClick(@n.Id)">@SR[n.click_action]</a>
|
||||
} else {
|
||||
<a class="close" data-dismiss="alert" aria-label="close" >@SR[n.click_action]</a>
|
||||
}
|
||||
</div>
|
||||
}
|
||||
}
|
||||
<nav class="navbar navbar-inverse navbar-static-top" role="navigation">
|
||||
<div class="container">
|
||||
<div class="navbar-header">
|
||||
|
Reference in New Issue
Block a user