Skip to content

Sujan7/django_crud

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Django CRUD Example Apps

Here you will find two small CRUD applications for managing a books table, one application is implemented using Class Based Views (books_cbv), and the other will implemented using Function Based Views (books_fbv).

Running the Application

Make sure you create the your DB using:

./manage.py migrate

or for Django < 1.7:

./manage.py syncdb 

Now you can run the development webs server:

./manage.py runserver 

To access the two applications go to the URL http://localhost:8000/

About

Django CRUD Example Apps

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 86.1%
  • HTML 13.9%