added site files

This commit is contained in:
gribse 2025-05-16 18:47:33 +02:00
parent 80c0c869de
commit 1285e550c6
191 changed files with 3484 additions and 0 deletions

156
gdpexemples.php Normal file
View file

@ -0,0 +1,156 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="http://www.achilletoupin.com/pem2t/style.css" />
<title>PEM2T</title>
<link rel="shortcut icon" href="index/images/favicon.png"/>
<!-- GALLERY -->
<meta name="viewport" content="width=720">
<!-- jQuery, -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<link href="http://cdnjs.cloudflare.com/ajax/libs/fotorama/4.5.2/fotorama.css" rel="stylesheet">
<script src="http://cdnjs.cloudflare.com/ajax/libs/fotorama/4.5.2/fotorama.js"></script>
<!-- MATHJAX -->
<script type="text/javascript" async
src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js?config=TeX-MML-AM_CHTML" async>
</script>
</head>
<body>
<?php include("index/includes/header.php"); ?>
<section>
<article>
<h1>Exemples de Livrables</h1>
<h2>Evolution de nos plannings pr&eacute;visionnels GANTT</h2>
<p>Dans l&rsquo;ordre :</p>
<ol>
<li>11/02</li>
<li>24/02</li>
<li>28/02</li>
<li>11/03</li>
<li>04/04</li>
<li>29/04</li>
</ol>
<div class="fotorama" data-nav="thumbs" data-thumbwidth="150px" data-allowfullscreen="true">
<img src="index/images/gantt/gantt-02-11.PNG">
<img src="index/images/gantt/gantt-02-24.PNG">
<img src="index/images/gantt/gantt-02-28.PNG">
<img src="index/images/gantt/gantt-03-11.PNG">
<img src="index/images/gantt/gantt-04-04.PNG">
<img src="index/images/gantt/gantt-04-29.PNG">
</div>
<h2>Evolution de nos grilles des freins</h2>
<p>Dans l&rsquo;ordre :</p>
<ol>
<li>15/03</li>
<li>5/05</li>
<li>29/05</li>
</ol>
<div class="fotorama" data-nav="thumbs" data-thumbwidth="150px" data-allowfullscreen="true">
<img src="index/images/gdp/grillefreins1.JPG">
<img src="index/images/gdp/grillefreins2.JPG">
<img src="index/images/gdp/grillefreins.JPG">
</div>
<h2>Exemple de compte rendu de r&eacute;union</h2>
<div class="fotorama" data-nav="thumbs" data-thumbwidth="150px" data-allowfullscreen="true">
<img src="index/images/gdp/cr.JPG">
</div>
<h2>Exemple de fiche de reporting</h2>
<div class="fotorama" data-nav="thumbs" data-thumbwidth="150px" data-allowfullscreen="true">
<img src="index/images/gdp/fichereporting1.JPG">
<img src="index/images/gdp/fichereporting2.JPG">
</div>
<h2>Bilan de la gestion de projet</h2>
<table>
<th>
<th></th>
<th>Éléments analysés<br></th>
<th>Causes</th>
<th>Plan d'action</th>
</th>
<tr>
<td>Ce qui a bien marché</td>
<td>
1. Créneau fixe de 4h par semaine<br/>
2. Compte-rendus de réunions très utiles pour le déroulement du projet<br/>
3. Répartition des tâches<br/>
4. Respect des dates imposées
</td>
<td>
1. Projet interne au DUT donc temps fourni<br/>
2. Permet de cadrer le projet<br/>
3. Pas de hiérarchie dans le groupe, remise en question perpétuelle de la répartition <br/>
4. Sérieux dans le travail et le respect des dates
</td>
<td>
1. Essayer de maintenir les créneaux chaque semaine<br/>
2. Les réaliser toujours mieux<br/>
3. Remise en question perpétuelle<br/>
4. Etre prêt plus tôt que la date limite
</td>
</tr>
<tr>
<td>Ce qui peut être amélioré</td>
<td>
1. Temps de gestion de projet trop long par rapport au temps accordé au projet en lui-même<br/>
2. Planning prévisionnel
</td>
<td>
1. 4h de projet par semaine<br/>
2. Projet de petite envergure, la grande majorité des tâches sont indépendantes les unes des autres, ainsi il est difficile détablir un planning
</td>
<td>
1. Travailler plus vite<br/>
2. Mieux organiser les tâches
</td>
</tr>
</table>
<h2>
<a href="ccln.php">Page suivante - Conclusion</a>
<img id="arrowRight" src="index/images/arrow-right.png"></img>
</h2>
</article>
<?php include("index/includes/aside.php"); ?>
</section>
<?php include("index/includes/footer.php"); ?>
</body>
</html>