Added age_days method to display the upload age of a screenshot

This commit is contained in:
Christoph Haas 2016-03-02 16:36:13 +01:00
parent 2b2f325356
commit d7bfa0843f
2 changed files with 8 additions and 1 deletions

View file

@ -27,6 +27,13 @@ class Screenshot < ActiveRecord::Base
end
end
# Calculate how many days ago this screenshot has been uploaded
def age_days
seconds = Time.now-self.uploaddatetime
days = (seconds/86400).to_i
days ? "#{days} days ago" : 'today'
end
# Return caption for full-screen screenshots.
# Takes the description of a screenshot if available.
# Otherwise it falls back to the general description of its package.

View file

@ -13,7 +13,7 @@
.imgcaption =screenshot.caption
// TODO: Show information only if admin
- if user_signed_in?
p Uploader IP=#{screenshot.uploaderip} / Token=#{screenshot.uploaderhash}
p Uploader IP=#{screenshot.uploaderip} / Token=#{screenshot.uploaderhash} / Uploaded #{screenshot.age_days}
// TODO: Enable button only if admin or uploader
a.button.tiny.alert[
href=delete_screenshot_path(@package.name, screenshot.id)