Sha256: 4984c4afdcc950f939c6da96ae3de6f72ab5fbea99bc7044716f4b69a7fd74d7

Contents?: true

Size: 677 Bytes

Versions: 1

Compression:

Stored size: 677 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, class: 'dashboard' %>
  </div>
<% end %>

<p>
  <%= link_to "Edit this dashboard", edit_dashboard_path(@dashboard) %>
</p>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
prosperity-0.0.9 app/views/prosperity/dashboards/show.html.erb