Convert file indentation to spaces
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<div class="dashboard-wrapper">
|
||||
<div class="main-container">
|
||||
<div class="row-fluid">
|
||||
<div class="main-container">
|
||||
<div class="row-fluid">
|
||||
<div class="span12">
|
||||
<div class="widget">
|
||||
<div class="widget-header">
|
||||
@@ -13,45 +13,44 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row-fluid">
|
||||
<div class="span12">
|
||||
<div class="widget">
|
||||
<div class="widget-header">
|
||||
<div class="title">
|
||||
<span class="fs1" aria-hidden="true" data-icon=""></span> Performance History
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget-body">
|
||||
<table class="table table-bordered table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th style="width:16%">Reviewer</th>
|
||||
<th style="width:16%">Date</th>
|
||||
<th style="width:16%">Score</th>
|
||||
<th style="width:16%">Comments</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<% @perf.each do |p| %>
|
||||
<tr>
|
||||
<td><%= p.reviewer_name %></td>
|
||||
<td><%= p.date_submitted %></td>
|
||||
<td><%= p.score %></td>
|
||||
<td><%= p.comments %></td>
|
||||
</tr>
|
||||
<% end %>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row-fluid">
|
||||
<div class="span12">
|
||||
<div class="widget">
|
||||
<div class="widget-header">
|
||||
<div class="title">
|
||||
<span class="fs1" aria-hidden="true" data-icon=""></span> Performance History
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget-body">
|
||||
<table class="table table-bordered table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th style="width:16%">Reviewer</th>
|
||||
<th style="width:16%">Date</th>
|
||||
<th style="width:16%">Score</th>
|
||||
<th style="width:16%">Comments</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<% @perf.each do |p| %>
|
||||
<tr>
|
||||
<td><%= p.reviewer_name %></td>
|
||||
<td><%= p.date_submitted %></td>
|
||||
<td><%= p.score %></td>
|
||||
<td><%= p.comments %></td>
|
||||
</tr>
|
||||
<% end %>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
|
||||
google.load("visualization", "1", {
|
||||
packages: ["corechart"]
|
||||
});
|
||||
@@ -116,7 +115,7 @@ function drawChart2() {
|
||||
}
|
||||
|
||||
function makeActive(){
|
||||
$('li[id="performance"]').addClass('active');
|
||||
$('li[id="performance"]').addClass('active');
|
||||
};
|
||||
|
||||
$(document).ready(function () {
|
||||
|
||||
Reference in New Issue
Block a user