urls.py 1.1 KB

123456789101112131415161718192021222324252627
  1. """mailList URL Configuration
  2. The `urlpatterns` list routes URLs to views. For more information please see:
  3. https://docs.djangoproject.com/en/1.10/topics/http/urls/
  4. Examples:
  5. Function views
  6. 1. Add an import: from my_app import views
  7. 2. Add a URL to urlpatterns: url(r'^$', views.home, name='home')
  8. Class-based views
  9. 1. Add an import: from other_app.views import Home
  10. 2. Add a URL to urlpatterns: url(r'^$', Home.as_view(), name='home')
  11. Including another URLconf
  12. 1. Import the include() function: from django.conf.urls import url, include
  13. 2. Add a URL to urlpatterns: url(r'^blog/', include('blog.urls'))
  14. """
  15. from django.conf.urls import url
  16. from mail import views as mailViews
  17. from django.views.generic import TemplateView
  18. urlpatterns = [
  19. # url(r'^admin/', admin.site.urls),
  20. url('^$|^index/$', TemplateView.as_view(template_name="index.html")),
  21. url('getmaillist/', mailViews.getmaillist, name="getmaillist"),
  22. url('getmailmessage/', mailViews.getmailmessage, name="getmailmessage"),
  23. url('getmailattachment/', mailViews.getmailattachment, name="getmailattachment"),
  24. ]