|
|
|
@ -52,9 +52,9 @@
|
|
|
|
|
<body>
|
|
|
|
|
<div id="bandeau">
|
|
|
|
|
<h1>IQ Ball</h1>
|
|
|
|
|
<div id="account" onclick="location.pathname='/settings'">
|
|
|
|
|
<div id="account" onclick="location.pathname='{{ path('/settings') }}'">
|
|
|
|
|
<img
|
|
|
|
|
src="{{ basePath }}/front/assets/icon/account.svg"
|
|
|
|
|
src="{{ path('/assets/icon/account.svg') }}"
|
|
|
|
|
alt="Account logo"
|
|
|
|
|
/>
|
|
|
|
|
<p>Mon profil
|
|
|
|
@ -64,7 +64,7 @@
|
|
|
|
|
|
|
|
|
|
<h2>Mes équipes</h2>
|
|
|
|
|
|
|
|
|
|
<button onclick="location.pathname='{{ basePath }}/team/new'"> Créer une nouvelle équipe</button>
|
|
|
|
|
<button onclick="location.pathname='{{ path('/team/new') }}'"> Créer une nouvelle équipe</button>
|
|
|
|
|
|
|
|
|
|
{% if recentTeam != null %}
|
|
|
|
|
{% for team in recentTeam %}
|
|
|
|
@ -78,13 +78,13 @@
|
|
|
|
|
|
|
|
|
|
<h2> Mes strategies </h2>
|
|
|
|
|
|
|
|
|
|
<button onclick="location.pathname='{{ basePath }}/tactic/new'"> Créer une nouvelle tactique</button>
|
|
|
|
|
<button onclick="location.pathname='{{ path('/tactic/new') }}'"> Créer une nouvelle tactique</button>
|
|
|
|
|
|
|
|
|
|
{% if recentTactic != null %}
|
|
|
|
|
{% for tactic in recentTactic %}
|
|
|
|
|
<div onclick="location.pathname={{ basePath }}/tactic/{{ strategie.id }}/edit">
|
|
|
|
|
<div onclick="location.pathname='{{ path("/tactic/#{strategie.id}/edit") }}'">
|
|
|
|
|
<p> {{ tactic.id }} - {{ tactic.name }} - {{ tactic.creation_date }} </p>
|
|
|
|
|
<button onclick="location.pathname='{{ basePath }}/tactic/{{ tactic.id }}/edit'"> Editer la
|
|
|
|
|
<button onclick="location.pathname='{{ path("/tactic/#{tactic.id}/edit") }}'"> Editer la
|
|
|
|
|
stratégie {{ tactic.id }} </button>
|
|
|
|
|
</div>
|
|
|
|
|
{% endfor %}
|
|
|
|
|