Sha256: 0c5e800cab849a32b5f10bc85e16c8284d738cbcf62f524f36b0338f1b681fee
Contents?: true
Size: 975 Bytes
Versions: 6
Compression:
Stored size: 975 Bytes
Contents
<a href="<%= uri('/models/new') %>" class="btn btn-primary">New Model</a> <table class="table"> <tr> <th>getId()</th> <th>getKey()</th> <th>getName()</th> <th>getVersion()</th> <th>getMetaInfo()</th> <th>getDeploymentId()</th> <th>getCategory()</th> <th>getCreateTime()</th> <th>getLastUpdateTime()</th> <th>Modeler</th> <th>Deploy</th> </tr> <% for model in @models %> <tr> <td><%= model.getId() %></td> <td><%= model.getKey() %></td> <td><%= model.getName() %></td> <td><%= model.getVersion() %></td> <td><%= model.getMetaInfo() %></td> <td><%= model.getDeploymentId() %></td> <td><%= model.getCategory() %></td> <td><%= model.getCreateTime() %></td> <td><%= model.getLastUpdateTime() %></td> <td><a href="<%= uri("/modeler.html?modelId=#{model.getId()}") %>" class="btn">Edit in Modeler</a></td> <td><a href="<%= uri("/models/#{model.getId()}/deploy") %>" class="btn">Deploy</a></td> </tr> <% end %> </table>
Version data entries
6 entries across 6 versions & 1 rubygems