Created
February 26, 2010 21:47
-
-
Save neaf/316197 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| - extends "base.html" | |
| - block(:nav) do | |
| %ul | |
| %li= link_to "Dashboard", resource(:guns) | |
| %li= link_to "Settings", resource(:user, :edit) | |
| %li= link_to "Sign Out", url(:logout) | |
| - extend_block(:content) do | |
| %section#userbar | |
| %h3= "Welcome back, #{ @current_user.first_name }" | |
| - if @current_user.guns.blank? | |
| %p.summary You haven't added any guns yet. | |
| - else | |
| %p.summary= "You have <strong>#{ @current_user.guns.count }</strong>, valued at <strong>$#{ @current_user.guns.sum(:value) }</strong>" | |
| = block(:content) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment