Django how to set main page

前端 未结 4 2012
予麋鹿
予麋鹿 2021-01-07 18:38

i want to set a main page or an index page for my app. i tried adding MAIN_PAGE in settings.py and then creating a main_page view returning a main_page object, but it doesn\

4条回答
  •  粉色の甜心
    2021-01-07 19:08

    You could use the generic direct_to_template view function:

    # in your urls.py ...
    ...
    url(r'^faq/$', 
        'django.views.generic.simple.direct_to_template', 
        { 'template': 'faq.html' }, name='faq'),
    ...
    

提交回复
热议问题