timetracker/games/templates/list_purchases.html

11 lines
416 B
HTML
Raw Normal View History

2024-08-08 18:17:43 +00:00
{% extends "base.html" %}
{% load static %}
{% block title %}
{{ title }}
{% endblock title %}
{% block content %}
<div class="2xl:max-w-screen-2xl xl:max-w-screen-xl md:max-w-screen-md sm:max-w-screen-sm self-center">
<c-simple-table :columns=data.columns :rows=data.rows :page_obj=page_obj :elided_page_range=elided_page_range :header_action=data.header_action />
2024-08-09 09:47:10 +00:00
</div>
2024-08-08 18:17:43 +00:00
{% endblock content %}