Sha256: a07a987006fbe0cc3796493d55b5e006f74b862b86b70152dbdd9e8aa3809088

Contents?: true

Size: 931 Bytes

Versions: 1

Compression:

Stored size: 931 Bytes

Contents

<header>
  <h2>localhost databases</h2>
</header>

<div ng-hide="isLoading()">
  <table-filter value="filterValue.name" placeholder="Enter database name"></table-filter>

  <table 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">&nbsp;</th>
    </tr>
    </thead>
    <tbody>
    <tr ng-repeat="database in databases | orderBy:'name' | filter:filterValue">
      <td><a href="{{database | collectionsPath}}">{{database.name}}</a></td>
      <td>{{database.count}}</td>
      <td>{{database.size | humanSize}}</td>
      <td class="actions">
        <delete-button ng-click="delete(database)" />
      </td>
    </tr>
    </tbody>
  </table>

  <div ng-hide="(databases | filter:filterValue).length" class="filter alert">
    Nothing has been found.
  </div>
</div>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
mongo_browser-0.2.0.rc2 app/assets/templates/databases.html