Sha256: d9db6c876cd0ff834b499ee683872fe4aad0385fa60099d14366c2d13484cccc
Contents?: true
Size: 697 Bytes
Versions: 2
Compression:
Stored size: 697 Bytes
Contents
<h1><%= @dashboard.title %></h1> <%= form_tag(dashboard_path(params[:id]), method: 'get') do %> <%= render 'prosperity/shared/date_range' %> <%= submit_tag "Update", class: 'btn btn-primary' %> <% end %> <% if @dashboard.graphs.empty? %> <p>No Graphs</p> <% end %> <% @dashboard.graphs.each do |graph| %> <div class="graph dashboard-graph"> <h2 class="graph-title"><%= graph.title %></h2> <div class="graph-edit-link"> <%= link_to 'edit', edit_graph_path(graph) %> </div> <%= render_graph graph, start_time: start_time, end_time: end_time, class: 'dashboard' %> </div> <% end %> <p> <%= link_to "Edit this dashboard", edit_dashboard_path(@dashboard) %> </p>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
prosperity-0.0.11 | app/views/prosperity/dashboards/show.html.erb |
prosperity-0.0.10 | app/views/prosperity/dashboards/show.html.erb |