Files
docupulse/templates/starred/starred.html

28 lines
802 B
HTML

{% extends "common/base.html" %}
{% from 'components/header.html' import header %}
{% block title %}Starred - DocuPulse{% endblock %}
{% block content %}
{{ header(
title="Starred",
description="View and manage your starred files and documents.",
icon="fa-star"
) }}
<div class="container-fluid py-4">
<div class="card shadow-sm">
<div class="card-body">
{% include 'components/search_bar.html' %}
<div id="fileGrid" class="row row-cols-1 row-cols-md-2 row-cols-lg-4 g-4"></div>
<div id="fileError" class="text-danger mt-2"></div>
</div>
</div>
</div>
{% include 'components/details_modal.html' %}
{% endblock %}
{% block extra_js %}
<script src="{{ url_for('static', filename='js/file-grid.js') }}"></script>
{% endblock %}