Skip to content

Commit

Permalink
Fixed text discrepancy with the English version (#24184)
Browse files Browse the repository at this point in the history
Fixed text discrepancy with the English version in index.md
  • Loading branch information
Shrondi authored Oct 21, 2024
1 parent f688334 commit de0869b
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions files/es/learn/server-side/django/skeleton_website/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -282,11 +282,9 @@ urlpatterns += static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
Como paso final, crea un fichero dentro de tu carpeta catalog llamado **urls.py**, y añade el siguiente texto para definir la `urlpatterns` importada (vacía). Éste es donde añadimos nuestros patrones a medida que construimos la aplicación.
```python
from django.conf.urls import url
from django.urls import path
from . import views
urlpatterns = [
]
Expand Down

0 comments on commit de0869b

Please sign in to comment.