Free cookie consent management tool by TermsFeed Policy Generator

source: stable/HeuristicLab.Services.WebApp/3.3/WebApp/plugins/plugins/plugins.cshtml @ 12962

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

#2388 merged r12878, r12879, r12883, r12885, r12913, r12914, r12925, r12932, r12961 into stable

File size: 2.5 KB
Line 
1<div class="default-view-container">
2    <script type="text/ng-template" id="pluginsExceptionDialog">
3        <div class="modal-header">
4            <button type="button" ng-click="close()" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
5            <h4 class="modal-title">Plugin {{pluginName}}</h4>
6        </div>
7        <div class="modal-body">
8            {{exception}}
9        </div>
10    </script>
11    <div class="row">
12        <div class="col-lg-12">
13            <div class="panel panel-default">
14                <div class="panel-heading">
15                    <h3 class="panel-title">WebApp Plugins</h3>
16                </div>
17                <div class="panel-body">
18                    <table class="table table-hover table-condensed" ts-wrapper>
19                        <thead>
20                            <tr>
21                                <th>#</th>
22                                <th ts-criteria="Name">Name</th>
23                                <th ts-criteria="AssemblyName">Assembly</th>
24                                <th ts-criteria="LastReload">Last reload</th>
25                                <th class="text-center">Status</th>
26                                <th></th>
27                            </tr>
28                        </thead>
29                        <tbody>
30                            <tr ng-repeat="plugin in plugins" ts-repeat>
31                                <td>{{$index + 1}}</td>
32                                <td>{{plugin.Name}}</td>
33                                <td>{{plugin.AssemblyName}}</td>
34                                <td>{{plugin.LastReload}}</td>
35                                <td class="text-center">
36                                    <span ng-hide="plugin.Exception" class="glyphicon glyphicon glyphicon-ok" style="color: green"></span>
37                                    <span ng-show="plugin.Exception" class="glyphicon glyphicon glyphicon-remove" style="color: darkred"
38                                          ng-click="open(plugin.Name, plugin.Exception)"></span>
39                                </td>
40                                <td>
41                                    <a ng-href="" class="cursor-pointer" data-ng-click="reloadPlugin(plugin.Name)">Reload</a>
42                                </td>
43                            </tr>
44                        </tbody>
45                    </table>
46                </div>
47            </div>
48        </div>
49    </div>
50</div>
Note: See TracBrowser for help on using the repository browser.