Sha256: 915be69020d68f223fe3654efa7dbaa5c48c87b2c94dbc3a31e94bd195d77f20

Contents?: true

Size: 1.88 KB

Versions: 5

Compression:

Stored size: 1.88 KB

Contents

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html>

  <head>
    <style type="text/css">
      <%# @dashboard_css %>
    </style>

    <%= javascript_include_tag 'http://code.jquery.com/jquery-1.4.2.min.js' %>
    <%= javascript_include_tag 'http://plugins.jquery.com/files/jquery.timers-1.2.js.txt' %>
    <%= javascript_include_tag 'js.class-2.1.4/min/core.js' %>
    <%= javascript_include_tag 'jqplot-0.9.7/jquery.jqplot.min.js' %>
    <%= javascript_include_tag 'dashboard' %>

    <%= stylesheet_link_tag 'dashboard' %>
    <%= stylesheet_link_tag 'jquery.jqplot.min.css' %>

    <script type='text/javascript'>
      jQuery(document).ready(function() {
        dashboard     = new Dashboard({basePath: '<%= @dashboard_path -%>'});
        json_widgets  = '<%= @json_widgets -%>';

        buildTheDashboard();
      });
    </script>

    <script type='text/javascript'>
      <%# @dashboard_js %>
    </script>
  </head>

  <body>
    <div id='dashboard'>
      <div class='dashboard-numbers'>
        <div class='widget-template' style='display: none;'>
          <div class="widget-title"></div>
          <div class="widget-data"></div>
        </div>
      </div>

      <div class='dashboard-clear'></div>

      <div class='dashboard-short-messages'>
        <div class='widget-template' style='display: none;'>
          <div class="widget-title"></div>
          <div class="widget-data">
            <ul>
              <li class='widget-data-template' style='display: none;'></li>
            </ul>
          </div>
        </div>
      </div>

      <div class='dashboard-clear'></div>

      <div class='dashboard-line-graphs'>
        <div class='widget-template' style='display: none;'>
          <div class='widget-data'></div>
        </div>
      </div>

      <div class='dashboard-clear'></div>
    </div>
  </body>

</html>

Version data entries

5 entries across 4 versions & 1 rubygems

Version Path
acts_as_dashboard-0.3.3 generators/dashboard/templates/show.html.erb
acts_as_dashboard-0.3.2 generators/dashboard/templates/show.html.erb
acts_as_dashboard-0.3.0 generators/dashboard/templates/show.html.erb
acts_as_dashboard-0.1.0 generators/dashboard/templates/show.html.erb
acts_as_dashboard-0.1.0 lib/acts_as_dashboard/app/views/dashboards/show.html.erb