JungDev / django-telegrambot

Simple app for Telegram bot in Django
BSD 3-Clause "New" or "Revised" License
237 stars 88 forks source link

TemplateDoesNotExist at /admin/django-telegrambot/ #9

Open gengkeye opened 6 years ago

gengkeye commented 6 years ago

When I visit http://localhost:8080/admin/django-telegrambot/, errors occurs: TemplateDoesNotExist at /admin/django-telegrambot/ admin/index.html

JungDev commented 6 years ago

@gengkeye Do you can check your project's urls.py? It should contain this urlpatterns:

url(r'^admin/', admin.site.urls),
url(r'^', include('django_telegrambot.urls')),