2017-10-19 20:57:28 +11:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr">
|
|
|
|
<head>
|
2017-10-21 19:44:11 +11:00
|
|
|
<title>Tetastock - {% block title %}Accueil{% endblock %}</title>
|
2017-10-19 20:57:28 +11:00
|
|
|
<meta name="viewport" content="initial-scale=1.0" />
|
|
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
2017-10-30 21:11:40 +11:00
|
|
|
<link rel="stylesheet" type="text/css" href="/static/style/style_{{ css }}.css" />
|
2017-10-19 20:57:28 +11:00
|
|
|
<script type="text/javascript" src="/static/scripts/tetalab.js"></script>
|
|
|
|
</head>
|
2017-10-25 06:42:57 +11:00
|
|
|
{% block bodyheader %}
|
2017-10-19 20:57:28 +11:00
|
|
|
<body>
|
2017-10-25 06:42:57 +11:00
|
|
|
{% endblock %}
|
2017-11-14 18:09:39 +11:00
|
|
|
<div id='main_wrapper' class='main_wrapper'>
|
2017-10-19 20:57:28 +11:00
|
|
|
<div class='center'>
|
|
|
|
<div class='banner' title='Stock Tetalab'>
|
2017-10-21 19:44:11 +11:00
|
|
|
Tetastock
|
2017-10-19 20:57:28 +11:00
|
|
|
</div>
|
|
|
|
<div class='top_menu'>
|
|
|
|
{% block top_menu %} <span class='top_menu_item_selected' onclick='javascript:document.location="./";'>Accueil</span> {% endblock %}
|
2017-10-30 22:01:47 +11:00
|
|
|
<input type='image' class='menu_button' src='/static/images/menu.png' title='Afficher/Cacher menu' value='' onclick='javascript:switch_css("{{ css }}");' />
|
2017-10-28 09:43:19 +11:00
|
|
|
<input type='image' src='/static/images/logout.png' title='Se deconnecter' value='' onclick='javascript:logout();' />
|
2017-10-19 20:57:28 +11:00
|
|
|
</div>
|
2017-11-14 18:09:39 +11:00
|
|
|
<div id='content_wrapper' class='content_wrapper'>
|
|
|
|
<div id='left_menu' class='left_menu'>
|
2017-10-19 20:57:28 +11:00
|
|
|
{% block left_menu %}
|
|
|
|
<div class='left_menu_item_selected' onclick='javascript:document.location="/";'>
|
|
|
|
Accueil
|
|
|
|
</div>
|
|
|
|
<div class='left_menu_item' onclick='javascript:document.location="/componants";'>
|
|
|
|
Composants
|
|
|
|
</div>
|
|
|
|
<div class='left_menu_item' onclick='javascript:document.location="/kits";'>
|
|
|
|
Kits
|
|
|
|
</div>
|
|
|
|
<div class='left_menu_item' onclick='javascript:document.location="/providers";'>
|
|
|
|
Fournisseurs
|
|
|
|
</div>{% endblock %}
|
|
|
|
</div>
|
2017-11-14 18:09:39 +11:00
|
|
|
<div id='content' class='content'>
|
2017-10-19 20:57:28 +11:00
|
|
|
{% block content %}
|
2017-10-25 06:42:57 +11:00
|
|
|
<h1>Tetastock</h1>
|
|
|
|
<div class='note'>
|
2017-10-28 09:43:19 +11:00
|
|
|
<p>Bienvenue {{ user }}</p>
|
2017-10-25 06:42:57 +11:00
|
|
|
<p>Ceci est l'outil de gestion de stock du <a href='https://www.tetalab.org'>Tetalab</a>.</p>
|
|
|
|
<p>Cet outil vous permet:
|
|
|
|
<ul>
|
|
|
|
<li>De gérer la liste des composants électroniques en possession du Tetalab</li>
|
|
|
|
<li>De gérer la liste des fournisseurs de composants</li>
|
|
|
|
<li>De gérer la liste des kits de montage</li>
|
|
|
|
</ul>
|
|
|
|
</p>
|
|
|
|
</div>
|
2017-10-19 20:57:28 +11:00
|
|
|
{% endblock %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class='footer'>
|
|
|
|
Tetalab - Le Hacker Space Toulousaing' Putaing' Cong' -
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|