PetterJohanssonTilia / MyCreators

0 stars 0 forks source link

bug: user comments not displaying date #10

Closed PetterJohanssonTilia closed 4 months ago

PetterJohanssonTilia commented 4 months ago

When a user makes a comment the last line of "by user on" is left empty when it's supposed to display a date after that text

PetterJohanssonTilia commented 4 months ago

fixed with this commit: 3d403425e901764fef0c864d5c0304db54035772 replaced: By {{ comment.username }} on {{ comment.created_at|date:"F d, Y H:i" }} with: By {{ comment.username }} on {{ comment.created_at|slice:":10" }}