我尝试了解如何使用http://demo.viewflow.io和#39;简介'进行相同的操作。
如何整合?应用或视图?在django-material布局菜单中我的域的root / home?见http://www.schneewind.ch/stackoverflow/demo.viewflow.io.png
我尝试了不同的方法,但还没找到合适的方法。我的事情我没有理解(可能在django-layer上?)
- >对于worldpress来说,不一样但是相似的想法:how to make this http://www.example.com/demo To http://www.example.com
答案 0 :(得分:0)
以下是示例演示模块
class Demo(ModuleMixin):
"""
Home page module
"""
order = 1
label = 'Introduction'
icon = '<i class="material-icons">account_balance</i>'
@property
def urls(self):
return frontend.ModuleURLResolver(
'^', [url('^$', IndexView.as_view(), name="index")],
module=self, app_name='demo', namespace='demo')
def index_url(self):
return '/'
def installed(self):
return True