About Admin home page #352
Replies: 2 comments 5 replies
-
Hey, thanks for the suggestion, I think it makes sense, can you please explain that by home page you mean / ? or /admin ? |
Beta Was this translation helpful? Give feedback.
-
Its pretty simple to override the template, just create a {% extends "layout.html" %}
{% block content %}
<!-- Place HTML here -->
{% endblock %} I've create a welcome page with some helpfull links to other features that are implemented in the admin, using the Tabler.css documentation it's pretty easy to create beatifull pages: {% extends "layout.html" %}
{% block content %}
<div class="col-12 col-xxl-6">
<div class="card">
<div class="card-header">
<h3 class="card-title">
<i class="fa fa-star me-2"></i>
Bem vindo!
</h3>
</div>
<div class="card-body border-bottom py-3">
<p>É possível acessar as tabelas do Dataside através de APIs, para gerenciar as integrações, acesse a página de integração <a href="http://localhost:8000/admin/integracao">clicando aqui</a>.</p>
</div>
</div>
</div>
{% endblock %} The Tabller.css is already "included" in the project, so you don't need to worry about importing it or anything. Heres the complete documentation: https://tabler.io/docs/getting-started |
Beta Was this translation helpful? Give feedback.
-
I think there should be a list of table name at home page so when someone redirects to http://localhost:8000/admin/ it helps them to look table easily.
Beta Was this translation helpful? Give feedback.
All reactions