mirror of https://github.com/fspc/BikeShed-1.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
519 B
18 lines
519 B
12 years ago
|
class UserStats < Netzke::Base
|
||
|
|
||
|
js_configure do |c|
|
||
|
c.body_padding = 15
|
||
|
c.title = "User Stats"
|
||
|
bike = controller.current_user.bike
|
||
|
c.html = %Q(
|
||
|
<div id="user_stats_page">
|
||
|
<p>Total Hours Worked: #{controller.current_user.total_hours}</p>
|
||
|
<p>Hours worked in #{Time.now.strftime('%B')}: #{controller.current_user.current_month_hours}</p>
|
||
|
<p>Current bike ID: #{bike.id if bike}</p>
|
||
|
<p>Current bike S/N: #{bike.serial_number if bike}</p>
|
||
|
</div>
|
||
|
)
|
||
|
end
|
||
|
end
|
||
|
|