Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created June 17, 2019 16:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/b35d4cb1013e009f4a33002e6379bf8a to your computer and use it in GitHub Desktop.
Save parzibyte/b35d4cb1013e009f4a33002e6379bf8a to your computer and use it in GitHub Desktop.
from django.urls import path
from . import views # Importar views.py
urlpatterns = [
path('', views.inicio, name='inicio'),
path('hola', views.hola, name='hola'),
path('agregar', views.agregar_gasto, name='agregar_gasto'),
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment