Skip to content

Commit

Permalink
templates: fix display of updated_at
Browse files Browse the repository at this point in the history
  • Loading branch information
sapuri committed Mar 10, 2024
1 parent ae9f40e commit 54376c0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion main/templates/main/difflist.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ <h3 id="lv{{ sran_level }}" class="level-folder {{ folder_status }}">Lv{{ sran_l
{{ data.bad_count|default:'-' }}
{% endif %}
</td>
<td class="updated_at">{{ data.updated_at|default:'-'|date:'Y/m/d H:i' }}</td>
<td class="updated_at">{{ data.updated_at|date:"Y/n/d G:i"|default:'-' }}</td>
</tr>
{% endfor %}
</tbody>
Expand Down
2 changes: 1 addition & 1 deletion main/templates/main/level/level.html
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ <h3 id="lv{{ level }}" class="level-folder {{ folder_status }}">Lv{{ level }}</h
{{ data.bad_count|default:'-' }}
{% endif %}
</td>
<td class="updated_at">{{ data.updated_at|default:'-'|date:'Y/m/d H:i' }}</td>
<td class="updated_at">{{ data.updated_at|date:"Y/n/d G:i"|default:'-' }}</td>
</tr>
{% endfor %}
</tbody>
Expand Down
2 changes: 1 addition & 1 deletion users/templates/users/cleardata.html
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ <h3 id="lv{{ sran_level }}" class="level-folder {{ folder_status }}">Lv{{ sran_l
{{ data.bad_count|default:'-' }}
{% endif %}
</td>
<td class="updated_at">{{ data.updated_at|default:'-'|date:'Y/m/d H:i' }}</td>
<td class="updated_at">{{ data.updated_at|date:"Y/n/d G:i"|default:'-' }}</td>
</tr>
{% endfor %}
</tbody>
Expand Down

0 comments on commit 54376c0

Please sign in to comment.