{% extends 'layout.html' %} {% block page_body %}

Welcome to FastTower Admin

What is FastTower?

FastTower is a powerful, high-performance web framework built on top of FastAPI. It combines the flexibility and speed of FastAPI with a Django-like structure to help developers create scalable, maintainable applications quickly.

Key Features

FastTower brings the best of both worlds by merging the simplicity of Django and the modern capabilities of FastAPI:

Customize Your Dashboard

You can fully customize this admin dashboard by creating your own template. To do so, you can use the following command to add your template folder:

from fastapi_admin.template import add_template_folder
add_template_folder('path/to/dashboard.html')

Once your template is added, you can extend the default layout and insert your own content:

{% raw %}{% extends 'layout.html' %}
{% block page_body %}
  --YOUR HTML HERE--
{% endblock %}
{% endraw %}

FastTower will automatically use your custom template for the admin page, allowing you to personalize the experience.

{% endblock %}