Sha256: f02dae8032fa3bf26df8bb562b20b70db55d0f92cfe4e93351b3ea2f3c15ad44

Contents?: true

Size: 975 Bytes

Versions: 3

Compression:

Stored size: 975 Bytes

Contents

<h1><%= @controller %></h1>
<table class="table table-striped">
  <thead>
    <tr>
      <th><%= @resource_legend %></th>
      <th>Created at</th>
      <th>Actions</th>
    </tr>
  </thead>
  <tbody>
    <tr ng-repeat="<%= @resource_name%> in <%= @plural_model_name%>">
      <td>
        <a href="/<%= @plural_model_name%>/{{<%= @resource_name%>.id}}">
          {{<%= "#{@resource_name}.#{@resource_legend.downcase}"%>}}
        </a>
      </td>
      <td>
        {{<%= @resource_name%>.created_at}}
      </td>
      <td>
        <a href="/<%= @plural_model_name%>/{{<%= @resource_name%>.id}}/edit"
          class="btn btn-primary"><i class="icon-edit"></i>
          Edit
        </a>
        <button ng-click="destroy()" class="btn btn-danger">
          <i class="icon-trash"></i> Delete
        </button>
      </td>
    </tr>
  </tbody>
</table>

<p>
  <a href='/<%= @plural_model_name%>/new' class="btn btn-primary">
    <i class="icon-plus"></i>New
  </a>
</p>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
angularjs_scaffold-0.0.19 lib/generators/angularjs/scaffold/templates/index.html
angularjs_scaffold-0.0.18 lib/generators/angularjs/scaffold/templates/index.html
angularjs_scaffold-0.0.17 lib/generators/angularjs/scaffold/templates/index.html