from django.urls import path
from .views import index, send_email, cotizar, send_cotizar, robots_txt
from django.contrib import sitemaps
from django.contrib.sitemaps.views import sitemap
from amtracApp.sitemaps import StaticViewSitemap

sitemaps = {
    'static': StaticViewSitemap,
}
urlpatterns = [
    path('', index, name='index'),
    path('send-email/', send_email, name='send_email'),
    path('cotizar/', cotizar, name='cotizar'),
    path('send-cotizar/', send_cotizar, name='send_cotizar'),
    path('robots.txt', robots_txt, name='robots_txt'),
    path('sitemap.xml', sitemap, {'sitemaps': sitemaps}, name='django.contrib.sitemaps.views.sitemap'),
]