Merge "Remove models.py from tutorial"

This commit is contained in:
Jenkins 2015-10-19 08:32:40 +00:00 committed by Gerrit Code Review
commit c20e8665c4

View File

@ -62,10 +62,8 @@ structure that looks like the following::
├── dashboard.pyc ├── dashboard.pyc
├── __init__.py ├── __init__.py
├── __init__.pyc ├── __init__.pyc
├── models.py
├── mypanel ├── mypanel
│   ├── __init__.py │   ├── __init__.py
│   ├── models.py
│   ├── panel.py │   ├── panel.py
│   ├── templates │   ├── templates
│   │   └── mypanel │   │   └── mypanel
@ -84,8 +82,8 @@ structure that looks like the following::
└── base.html └── base.html
For this tutorial, we will not deal with the static directory, the ``models.py`` For this tutorial, we will not deal with the static directory, or the
file and tests.py file. Leave them as they are. ``tests.py`` file. Leave them as they are.
With the rest of the files and directories in place, we can move on to add our With the rest of the files and directories in place, we can move on to add our
own dashboard. own dashboard.