aboutsummaryrefslogtreecommitdiffstats
path: root/app/helpers/creation_helper.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/helpers/creation_helper.rb')
-rw-r--r--app/helpers/creation_helper.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/app/helpers/creation_helper.rb b/app/helpers/creation_helper.rb
deleted file mode 100644
index 167f2f01b..000000000
--- a/app/helpers/creation_helper.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-module CreationHelper
-
- def creation_tag(object)
- field_set_tag t("layouts.creation_tag.title") do
- content_tag :ul do
- [(content_tag :li do
- object.human_attribute_name('creation_time') + ' : ' + l(object.creation_time, :format => :short)
- end),
- (content_tag :li do
- object.human_attribute_name('creator_id') + ' : ' + object.creator_id if object.creator_id
- end)].join.html_safe
- end
- end
- end
-end