Sha256: 88ba90b23583aab915a96b29a057987f00f20afc5f86fc6101818d823872bf84

Contents?: true

Size: 505 Bytes

Versions: 2

Compression:

Stored size: 505 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><%= graph.title %></h2>

    <div class="metric dashboard" data-url="<%= graph_path(graph, start_time: start_time) %>"></div>
  </div>
<% end %>

Version data entries

2 entries across 2 versions & 1 rubygems

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