Skip to content

Instantly share code, notes, and snippets.

@neaf
Created February 26, 2010 21:47
Show Gist options
  • Select an option

  • Save neaf/316197 to your computer and use it in GitHub Desktop.

Select an option

Save neaf/316197 to your computer and use it in GitHub Desktop.
- 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