def note
@type = "note"
@note = Note.find(params[:id])
+ @title = "#{I18n.t('browse.note.title')} | #{@note.id}"
@next = Note.find(:first, :order => "id ASC", :conditions => [ "status != 'hidden' AND id > :id", { :id => @note.id }] )
@prev = Note.find(:first, :order => "id DESC", :conditions => [ "status != 'hidden' AND id < :id", { :id => @note.id }] )
rescue ActiveRecord::RecordNotFound