implementing nested blueprint for api calls

This commit is contained in:
Yisroel Baum 2024-09-17 11:34:48 +03:00
parent fbdc6b4ee4
commit d0908cf65d
4 changed files with 43 additions and 4 deletions

View file

@ -0,0 +1,22 @@
{% extends 'base.html' %}
{% block title %}testing{% endblock title %}
{% block stylesheet %}
<style>
.custom-table {
border-radius: 15px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
overflow: hidden; /* Ensures rounded corners apply to the entire table */
}
</style>
{% endblock stylesheet %}
{% block content %}
<main>
<div class="container my-4 px-5">
<h2 class="text-center">Testing Page</h2>
</div>
</main>
{% endblock content %}