APTrust/dart

View on GitHub
ui/templates/app_setting/list.html

Summary

Maintainability
Test Coverage
{{> bannerAlert message = alertMessage }}

<h2>Application Settings</h2>
<div class="pull-right mt-1 mb-3">
  <a class="btn btn-primary" href="#AppSetting/new" role="button">New</a>
</div>
<table class="table table-hover">
  <thead class="thead-inverse">
    <tr>
      <th>Name</th>
      <th>Value</th>
    </tr>
  </thead>
  <tbody>
    {{#each items}}
    <tr class="clickable-row" data-url="#AppSetting/edit?id={{ id }}">
      <td>{{ name }}</td>
      <td>{{ value }}</td>
    </tr>
    {{/each }}
  </tbody>
</table>

{{> tableBottomLinks }}