my_tickets.html: Trans tags

This commit is contained in:
Timothy Hobbs 2023-12-04 23:42:49 +00:00
parent 9b17dc3cbd
commit 7a4210df50

View File

@ -7,17 +7,17 @@
<table class="table table-striped" id="ticketsTable"> <table class="table table-striped" id="ticketsTable">
<thead> <thead>
<tr> <tr>
<th>Title</th> <th>{% trans "Title" %}</th>
<th>Queue</th> <th>{% trans "Queue" %}</th>
<th>Status</th> <th>{% trans "Status" %}</th>
<th>Created</th> <th>{% trans "Created" %}</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<!-- Rows will be added here dynamically using jQuery --> <!-- Rows will be added here dynamically using jQuery -->
</tbody> </tbody>
</table> </table>
<nav aria-label="Page navigation"> <nav aria-label="{% trans 'Page navigation' %}">
<ul class="pagination" id="pagination"> <ul class="pagination" id="pagination">
<!-- Pagination buttons will be added here dynamically --> <!-- Pagination buttons will be added here dynamically -->
</ul> </ul>