CRUD controllers for Article, ArticleType, AttributeDefinition, ArticleTypeAttribute, AIPipelineJob, Order, Customer, Invoice, User and LogEntry. SecurityController handles login/logout; TotpSetupController manages 2FA enrollment. API controllers for pipeline and orders. Admin dashboard template and Twig base layout included. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
8 lines
220 B
Twig
8 lines
220 B
Twig
{% extends '@EasyAdmin/page/content.html.twig' %}
|
|
|
|
{% block page_title %}Dashboard{% endblock %}
|
|
|
|
{% block main %}
|
|
<h1>SuperSeller3000 Admin</h1>
|
|
<p>Welcome, {{ app.user ? app.user.email : 'guest' }}.</p>
|
|
{% endblock %}
|