from django.urls import include, re_path
from .views import *
from .models import *
from django.conf.urls import include, url

urlpatterns = [
    re_path(r'^errores_404/$', error_404,name='error_404'),
    re_path(r'^errores_500/$', View_error_500, name='error')
]