account add todos

This commit is contained in:
Tykayn 2024-07-16 17:10:43 +02:00 committed by tykayn
parent 09a907d4e9
commit 661166f7a3
4 changed files with 5 additions and 7 deletions

View File

@ -24,10 +24,7 @@
<component name="ChangeListManager">
<list default="true" id="7b6ae3ea-b7de-4daa-94af-b6fb4f3c8b8e" name="Default Changelist" comment="">
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/assets/styles/_global.scss" beforeDir="false" afterPath="$PROJECT_DIR$/assets/styles/_global.scss" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/Controller/AccountController.php" beforeDir="false" afterPath="$PROJECT_DIR$/src/Controller/AccountController.php" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/Controller/Admin/DashboardController.php" beforeDir="false" afterPath="$PROJECT_DIR$/src/Controller/Admin/DashboardController.php" afterDir="false" />
<change beforePath="$PROJECT_DIR$/templates/account/history.html.twig" beforeDir="false" afterPath="$PROJECT_DIR$/templates/account/history.html.twig" afterDir="false" />
<change beforePath="$PROJECT_DIR$/templates/account/index.html.twig" beforeDir="false" afterPath="$PROJECT_DIR$/templates/account/index.html.twig" afterDir="false" />
<change beforePath="$PROJECT_DIR$/templates/account/nav.html.twig" beforeDir="false" afterPath="$PROJECT_DIR$/templates/account/nav.html.twig" afterDir="false" />
</list>
@ -314,7 +311,7 @@
<workItem from="1687943901322" duration="8313000" />
<workItem from="1721124162582" duration="4590000" />
<workItem from="1721135270174" duration="484000" />
<workItem from="1721135995908" duration="6489000" />
<workItem from="1721135995908" duration="6625000" />
</task>
<servers />
</component>

View File

@ -70,7 +70,7 @@ $currentFestival = "aucun";
#[Route('/account/caisse-templates', name: 'app_account_caisse_templates')]
public function caisseTemplates(): Response
{
return $this->render('account/caisse.html.twig', [
return $this->render('account/caisse-templates.html.twig', [
]);
}
#[Route('/account/products', name: 'app_account_products')]

View File

@ -9,7 +9,8 @@
<h1>
Tableau de bord
</h1>
<a href="{{ path('app_account') }}">modifier mes informations (todo)</a>
<a class="todo" href="{{ path('app_account') }}">modifier mes informations</a>
<a class="todo" href="{{ path('app_account') }}">changer de mot de passe</a>
<p>
Coucou {{ app.user.email }}!
</p>

View File

@ -22,7 +22,7 @@
</a>
</li>
<li>
<a href="{{ path('app_account_history') }}">
<a class="todo" href="{{ path('app_account_history') }}">
Historique
</a>
</li>