Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2388 merged hive statistics branch into trunk

File size: 2.5 KB
RevLine 
[12428]1<div class="default-view-container">
[12523]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>
[12428]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">
[12557]18                    <table class="table table-hover table-condensed" ts-wrapper>
[12428]19                        <thead>
20                            <tr>
21                                <th>#</th>
[12557]22                                <th ts-criteria="Name">Name</th>
[12878]23                                <th ts-criteria="AssemblyName">Assembly</th>
[12557]24                                <th ts-criteria="LastReload">Last reload</th>
[12878]25                                <th class="text-center">Status</th>
[12428]26                                <th></th>
27                            </tr>
28                        </thead>
[12557]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>
[12878]35                                <td class="text-center">
[12557]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>
[12878]41                                    <a ng-href="" class="cursor-pointer" data-ng-click="reloadPlugin(plugin.Name)">Reload</a>
[12557]42                                </td>
43                            </tr>
44                        </tbody>
[12428]45                    </table>
46                </div>
47            </div>
48        </div>
49    </div>
50</div>
Note: See TracBrowser for help on using the repository browser.