[Fixed]-Customizing Example Django App – Django Dev Pattern

1👍

Django based on MTV (model, view, template) pattern. More about it here http://aijogja.pythonblogs.com/251_aijogja/archive/1433_django_tutorial-create_a_blog-part_6__mvt_model_view_template_section_1-homepage.html

For adding another page, setup route in urls.py (write regexp), add function in views.py (must return httpresponse) and create template.html

Leave a comment