diff --git a/README.md b/README.md index c9cde7f..888ce34 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,7 @@ A curated list of awesome Django apps. Inspired by and based on [awesome-python] - [Asset Management](#asset-management) - [Debugging](#debugging) - [Fields](#fields) + - [Models](#models) - [Forms](#forms) - [Model Extensions](#model-extensions) - [RESTful API](#restful-api) @@ -31,6 +32,10 @@ A curated list of awesome Django apps. Inspired by and based on [awesome-python] * [django-image-tools](https://github.com/bonsaistudio/django-image-tools/) - A package to handle images in Django. * [django-imagekit](https://github.com/matthewwithanm/django-imagekit/) - Automated image processing for Django. +## Models +* Basically Django supports MVT or MVC type things where models does the important role in Django. It shows the database table contains which type of data like String, Int, etc. +After design model we have to add this model in admin.py.Then just migrate the web app . + ## Forms * [django-crispy-forms](https://github.com/maraujop/django-crispy-forms/) - The best way to have DRY Django forms. The app provides a tag and filter that lets you quickly render forms in a div format while providing an enormous amount of capability to configure and control the rendered HTML.