Sha256: ac0e4fb8547e6faee8218584a55e91e5c93b2143ae6c4e597abc3badb7f51083

Contents?: true

Size: 1.47 KB

Versions: 12

Compression:

Stored size: 1.47 KB

Contents

<% @page_title = "#{l :dashboard}" %>

<h1>Dashboard</h1>

<div style="background-color: white;">
<% for user, hours_last_week, hours_this_week, hours_today, hours_this_month, hours_last_month, invoice_hours_last_week, invoice_hours_this_week, invoice_hours_today, invoice_hours_this_month, invoice_hours_last_month in @users %>
  <div class="user_box">
  	<dl>
  	  <dt><img src="/images/user.png" height="20px" /><%=h user.name %></dt>
	  <dd>
        <table>
          <tr><td><%= l :hours_last_week %>:</td><td><%=hours_last_week%>/<%=invoice_hours_last_week%></td><td><%= hours_last_week.nil? || hours_last_week <= 0 ? '<img src="/images/flag_red.png" height="20px" />' : '' %><%= hours_last_week.nil? == false && hours_last_week > 0 && hours_last_week < 30 ? '<img src="/images/flag_yellow.png" height="20px" />' : '' %></td></tr>
          <tr><td><%= l :hours_this_week %>:</td><td><%=hours_this_week%>/<%=invoice_hours_this_week%></td><td><%= @week_day > 1 && (hours_this_week.nil? || hours_this_week <= 0) ? '<img src="/images/flag_red.png" height="20px" />' : '' %></td></tr>
          <tr><td><%= l :hours_today %>:</td><td><%=hours_today%>/<%=invoice_hours_today%></td><td></td></tr>
		  <tr><td><%= l :hours_last_month %>:</td><td><%=hours_last_month%>/<%=invoice_hours_last_month%></td><td></td></tr>
          <tr><td><%= l :hours_this_month %>:</td><td><%=hours_this_month%>/<%=invoice_hours_this_month%></td><td></tr>		  
        </table>
	  </dd>
	</dl>
  </div>
<% end %>
</div>

<br />

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
backlog-0.37.2 app/views/dashboard/show.rhtml
backlog-0.37.1 app/views/dashboard/show.rhtml
backlog-0.36.2 app/views/dashboard/show.rhtml
backlog-0.34.1 app/views/dashboard/show.rhtml
backlog-0.34.2 app/views/dashboard/show.rhtml
backlog-0.35.0 app/views/dashboard/show.rhtml
backlog-0.34 app/views/dashboard/show.rhtml
backlog-0.35.1 app/views/dashboard/show.rhtml
backlog-0.35.2 app/views/dashboard/show.rhtml
backlog-0.35.3 app/views/dashboard/show.rhtml
backlog-0.35.4 app/views/dashboard/show.rhtml
backlog-0.35.5 app/views/dashboard/show.rhtml