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

Format Date on Themes Single #180

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions templates/themes/single.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
</li>
<li class="list-group-item d-flex justify-content-between align-items-center">
<span class="text-muted"><strong>Last updated</strong></span>
<span class="badge bg-secondary rounded-pill">{{ theme.lastUpdated|date("m/d/Y") }}</span>
<span class="badge bg-secondary rounded-pill">{{ theme.lastUpdated|date("d.m.Y") }}</span>
</li>
<li class="list-group-item d-flex justify-content-between align-items-center">
<span class="text-muted"><strong>Active Installations</strong></span>
Expand All @@ -64,7 +64,7 @@
</li>
<li class="list-group-item d-flex justify-content-between align-items-center">
<span class="text-muted"><strong>Last seen</strong></span>
<span class="badge bg-secondary rounded-pill">{{ theme.updatedAt|date("m/d/Y") }}</span>
<span class="badge bg-secondary rounded-pill">{{ theme.updatedAt|date("d.m.Y") }}</span>
</li>
</ul>
</div>
Expand Down