diff --git a/source/intro/02-create-django-app.rst b/source/intro/02-create-django-app.rst index 207f44e..6af653d 100644 --- a/source/intro/02-create-django-app.rst +++ b/source/intro/02-create-django-app.rst @@ -38,14 +38,14 @@ Cette application servira à structurer les listes de souhaits, les éléments q .. code-block:: shell - $ cd gwift - $ python manage.py startapp wish + (gwift-env)$ cd gwift + (gwift-env)$ python manage.py startapp wish Résultat? Django nous a créé un répertoire ``wish``, dans lequel on trouve les fichiers suivants: .. code-block:: shell - $ ls -l wish + (gwift-env)$ ls -l wish admin.py __init__.py migrations models.py tests.py views.py En résumé, chaque fichier a la fonction suivante: