I'm using Django 1.11.4,
root app
url(r'^contacto/', include('contacto.urls'), name='contacto'),
contact_app / urls.py
from django.conf.urls import url, include
from contacto.views import contacto
urlpatterns = [
url(r'^$',...
asked by
08.05.2018 / 02:12