Sha256: 7f743aa4e9fed129974b9efa8d35ee3a98ca7e8004fb7a2739717e16867c6ea4
Contents?: true
Size: 640 Bytes
Versions: 2
Compression:
Stored size: 640 Bytes
Contents
<h1>List of worlds</h1> <table class="table"> <thead> <tr> <th>Id</th> <th>Meta</th> <th>Executor?</th> <th></th> </tr> </thead> <% @worlds.each do |world| %> <tr> <td><%= h(world.id) %></td> <td><%= h(world.meta) %></td> <td><%= "true" if world.is_a? Dynflow::Coordinator::ExecutorWorld %></td> <td> <a href="<%= url("/worlds/#{world.id}/ping") %>" class="postlink">ping</a> <% if world.id == params[:inactive_world_id] %> <a href="<%= url("/worlds/#{world.id}/invalidate") %>" class="postlink">invalidate</a> <% end %> </td> </tr> <% end %> </table>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
dynflow-0.8.1 | web/views/worlds.erb |
dynflow-0.8.0 | web/views/worlds.erb |