Sha256: 1660badbb7aad7414f94a575a7c3429e501de59760fc7e835468c5296b302121
Contents?: true
Size: 1.06 KB
Versions: 1
Compression:
Stored size: 1.06 KB
Contents
<header> <h2>localhost databases</h2> </header> <table-filter value="filterValue.name" placeholder="Enter database name"></table-filter> <table ng-hide="isLoading()" ng-show="(databases | filter:filterValue).length" class="table table-striped table-hover databases"> <thead> <tr> <th>Name</th> <th>Collections</th> <th>Size</th> <th class="actions"> </th> </tr> </thead> <tbody> <tr ng-repeat="database in databases | orderBy:'name' | filter:filterValue" ng-mouseleave="showActions = false" ng-mouseenter="showActions = true"> <td><a href="{{database | collectionsPath}}">{{database.name}}</a></td> <td>{{database.count}}</td> <td>{{database.size | humanSize}}</td> <td> <span class="actions" ng-show="showActions"> <show-button path="{{database | collectionsPath}}"></show-button> <delete-button ng-click="delete(database)"></delete-button> </span> </td> </tr> </tbody> </table> <div ng-hide="(databases | filter:filterValue).length" class="alert"> Nothing has been found. </div>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mongo_browser-0.2.5 | public/ng/templates/databases/index.html |