摘要:
1 # king_urls.py 2 # ————————02PerfectCRM创建ADMIN页面———————— 3 from django.conf.urls import url 4 from king_admin import views 5 6 urlpatterns = [ 7 url 阅读全文
摘要:
1 {#app_index.html#} 2 {## ————————02PerfectCRM创建ADMIN页面————————#} 3 {% extends 'king_master/king_index.html' %} 4 {## ————————02PerfectCRM创建ADMIN页面—— 阅读全文
摘要:
1 #kingadmin_tags.py 2 3 # ————————06PerfectCRM实现King_admin注册功能获取内存优化处理———————— 4 5 # 因为前端禁止使用下划线开头(_meta.verbose_name ),所以通过后端处理后返回前端。 6 from django 阅读全文
摘要:
1 #base_admin.py 2 #Django admin 注册功能的形式 3 # sites = { 4 # 'crm':{ 5 # 'customers':CustomerAdmin, 6 # 'customerfollowup':CustomerFollowUPAdmin, 7 # } 阅读全文
摘要:
1 #base_admin.py 2 #Django admin 注册功能的形式 3 # sites = { 4 # 'crm':{ 5 # 'customers':CustomerAdmin, 6 # 'customerfollowup':CustomerFollowUPAdmin, 7 # } 阅读全文
摘要:
1 #base_admin.py 2 #Django admin 注册功能的形式 3 # sites = { 4 # 'crm':{ 5 # 'customers':CustomerAdmin, 6 # 'customerfollowup':CustomerFollowUPAdmin, 7 # } 阅读全文
摘要:
1 #app_config.py 2 from django import conf #配置文件 3 # print("dj conf:",conf) #配置文件 4 # print("dj conf:",conf.settings)#配置文件.设置 5 6 # for app in conf.se 阅读全文
摘要:
阅读全文
摘要:
如果感觉本章博客对您有帮助,请尽情打赏吧! 阅读全文
摘要:
1 from django.conf.urls import url 2 from DBadd import auth_views 3 from DBadd import crm_views 4 5 urlpatterns = [ 6 url(r'^auth_user/$', auth_views. 阅读全文