|
|
|
@ -9,5 +9,31 @@
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<h1>Page Home à faire</h1>
|
|
|
|
|
|
|
|
|
|
<h2> Mes équipes </h2>
|
|
|
|
|
|
|
|
|
|
{% for team in recentTeam %}
|
|
|
|
|
<div>
|
|
|
|
|
<p> {{team.name}} </p>
|
|
|
|
|
</div>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
|
|
<h2> Mes strategies </h2>
|
|
|
|
|
|
|
|
|
|
<button onclick="location.pathname = "/tactic/create"> Créer une nouvelle équipe </button>
|
|
|
|
|
|
|
|
|
|
{% for tactic in recentTactic %}
|
|
|
|
|
<div onclick="location.pathname = /tactic/edit/{{ strategie.id }}">
|
|
|
|
|
<p> {{tactic.id}} - {{tactic.name}} - {{tactic.creation_date}} </p>
|
|
|
|
|
</div>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
|
|
<h2>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|