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.

23 lines
595 B

13 years ago
module ApplicationHelper
# for each record in the rails flash this
# function wraps the message in an appropriate div
# and displays it
def flash_display(clazz = '')
flashes = flash.select{|key, msg| msg.present?}.collect { |key, msg|
content_tag :div, (content_tag :p, msg), :class => "message #{key}"
}.join
if flashes.present?
content_tag :div, flashes.html_safe, :class => clazz
else
nil
end
end
13 years ago
def active_scaffold_column_timestamp(column, record)
value = record.send(column.name)
value.nil? ? nil : Time.at(value)
end
13 years ago
end