Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Published date missing from content list #8917

Closed
frantzypants opened this issue Aug 17, 2017 · 10 comments · Fixed by TryGhost/Admin#852
Closed

Published date missing from content list #8917

frantzypants opened this issue Aug 17, 2017 · 10 comments · Fixed by TryGhost/Admin#852
Assignees
Labels
affects:admin Anything relating to Ghost Admin bug [triage] something behaving unexpectedly

Comments

@frantzypants
Copy link
Contributor

In Ghost 1.x there is no way to see the date of a published post or draft unless you actually click into the post itself. You can only see when a post was 'last edited.'

screen shot 2017-08-17 at 1 21 55 pm

@frantzypants frantzypants changed the title Display date missing from content list Published date missing from content list Aug 17, 2017
@parkerproject
Copy link

This is very important because editors or writers should be able to list on the list at a glance the dates of each post. It was there on the previous version.

@parkerproject
Copy link

I think this should to both publish and scheduled stories

@kevinansfield kevinansfield added affects:admin Anything relating to Ghost Admin css / design / mobile Minor UI issues labels Aug 18, 2017
@parkerproject
Copy link

If you are using moment to format the date, I believe you currently using this format moment(date).startOf('day').fromNow();
change it to something like moment(date).format("MMM Do YYYY")

@sethlilly
Copy link
Contributor

@kevinansfield I'm happy to take a shot at designing and implementing this.

@kirrg001
Copy link
Contributor

cc @JohnONolan

@parkerproject
Copy link

@kevinansfield any update

@JohnONolan
Copy link
Member

JohnONolan commented Sep 6, 2017

This is a bug. Correct behaviour is:

  • Draft by Sarah Frantz — Last edited $draftDate
  • Scheduled by Sarah Frantz — Will go live $scheduledDate
  • Published by Sarah Frantz$publishedDate

$draftDate possible values

  • A few seconds ago (if under 1 min)
  • 2 minutes ago (if under 1 hour)
  • 3 hours ago (if under 24 hours)
  • yesterday (if under 48 hours)
  • 12 Aug 2017 (else)

$scheduledDate possible values

These values should always be color: var(--green);

  • in a few seconds (less than 1 min)
  • in 2 minutes (less than 15 mins)
  • at 13:32 Today (more than 15 mins away, date = today)
  • at 13:32 Tomorrow (date = tomorrow)
  • at 13:32 on 12 Sep 2017 (date > tomorrow)

$publishedDate possible values

  • A few seconds ago (less than 1 min)
  • 2 minutes ago (less than 15 mins)
  • 13:32 Today (more than 15 mins away, date = today)
  • 13:32 Yesterday (date = yesterday)
  • 12 Sep 2017 (else)

@JohnONolan JohnONolan added bug [triage] something behaving unexpectedly and removed css / design / mobile Minor UI issues labels Sep 6, 2017
acburdine added a commit to acburdine/Ghost-Admin that referenced this issue Sep 6, 2017
closes TryGhost/Ghost#8917
- rename gh-format-timeago to gh-format-post-time
- add special handling for published & scheduled posts as per TryGhost/Ghost#8917 (comment)
acburdine added a commit to acburdine/Ghost-Admin that referenced this issue Sep 7, 2017
closes TryGhost/Ghost#8917
- rename gh-format-timeago to gh-format-post-time
- add special handling for published & scheduled posts as per TryGhost/Ghost#8917 (comment)
- fix some timezone issues in acceptance tests
kirrg001 pushed a commit to TryGhost/Admin that referenced this issue Sep 7, 2017
closes TryGhost/Ghost#8917

- rename gh-format-timeago to gh-format-post-time
- add special handling for published & scheduled posts as per TryGhost/Ghost#8917 (comment)
- fix some timezone issues in acceptance tests
@parkerproject
Copy link

parkerproject commented Sep 7, 2017

@kirrg001 @acburdine it looks like your fix has affected the "Last seen date" on the team members page in the admin

@acburdine
Copy link
Member

@parkerproject I don't know if this fix specifically affected that - it may have been broken before. I'll investigate it.

@parkerproject
Copy link

@acburdine thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
affects:admin Anything relating to Ghost Admin bug [triage] something behaving unexpectedly
Projects
None yet
7 participants