Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Services.WebApp/3.3/WebApp/plugins/plugins/plugins.cshtml @ 12428

Last change on this file since 12428 was 12428, checked in by ascheibe, 9 years ago

#2394 added web app and status page to trunk

File size: 1.3 KB
Line 
1<div class="default-view-container">
2    <div class="row">
3        <div class="col-lg-12">
4            <div class="panel panel-default">
5                <div class="panel-heading">
6                    <h3 class="panel-title">WebApp Plugins</h3>
7                </div>
8                <div class="panel-body">
9                    <table class="table table-hover table-condensed">
10                        <thead>
11                            <tr>
12                                <th>#</th>
13                                <th>Name</th>
14                                <th>Assembly</th>
15                                <th>Last reload</th>
16                                <th></th>
17                            </tr>
18                        </thead>
19                        <tr ng-repeat="plugin in plugins">
20                            <td>{{$index + 1}}</td>
21                            <td>{{plugin.Name}}</td>
22                            <td>{{plugin.AssemblyName}}</td>
23                            <td>{{plugin.LastReload}}</td>
24                            <td>
25                                <a ng-href="" data-ng-click="reloadPlugin(plugin.Name)">Reload</a>
26                            </td>
27                        </tr>
28                    </table>
29                </div>
30            </div>
31        </div>
32    </div>
33</div>
Note: See TracBrowser for help on using the repository browser.