Hi,
I have tried to create a simple News App in Django which is given in the official Documentation site of Django 1.6
https://docs.djangoproject.com/en/1.6/intro/overview/
.
It has 2 models : Reporter and Article.
What you will find in this video:
1. How to start a project In Django 1.6
2. How to create an App.(django-admin.py startproject project name) In Django 1.6
3 How to include an app into a project (python manage.py startapp ap_name) In Django 1.6
4. How to create database for the models of the app using "syncdb" In Django 1.6
5. How to redirect a URL to a view and display your content.(urls.py) In Django 1.6
6. How to Access the Django Admin Panel In Django 1.6.
7. How to add posts using Admin Panel In Django 1.6
I will be useing Django 1.6 and Python 2.7 throughout...
In the Next video I will show you how to display the content of an Article using Templates.