source:
branches/WebJobManager/HeuristicLab.Clients.Hive.WebJobManager/Views/Shared/Components/Alert/Default.cshtml
Last change on this file was 13656, checked in by ascheibe, 9 years ago | |
---|---|
File size: 608 bytes |
Line | |
---|---|
1 | @model List<string> |
2 | <div class="col-lg-6 col-md-12"> |
3 | <div class="panel panel-warning"> |
4 | <div class="panel-heading"> |
5 | <i class="fa fa-bell fa-fw"></i> |
6 | Alerts |
7 | </div> |
8 | <div class="panel-body"> |
9 | <div class="list-group"> |
10 | @foreach (var item in Model) |
11 | { |
12 | <a href="#" class="list-group-item"> |
13 | <i class="fa fa-exclamation fa-fw"></i> |
14 | @item |
15 | </a> |
16 | } |
17 | </div> |
18 | </div> |
19 | </div> |
20 | </div> |
Note: See TracBrowser
for help on using the repository browser.