DjangoGirls / tutorial

This is a tutorial we are using for Django Girls workshops
http://tutorial.djangogirls.org/
Other
1.53k stars 1.86k forks source link

Mistake in Persian tutorial code #1698

Closed Mahsssa closed 3 years ago

Mahsssa commented 3 years ago

Issue description

Hi!

There is a mistake in modules names in Persian tutorial code and this is the link: https://tutorial.djangogirls.org/fa/django_urls/

When we want to create our first URL, the original code is:

from django.contrib import path, include from django.urls import admin

urlpatterns = [ path('admin/', admin.site.urls), path('', include('blog.urls')), ]

But as you know, It should be:

from django.contrib import admin from django.urls import path, include

Language

Persian

Operating system

What operating system does this issue relate to?

magul commented 3 years ago

Done in #1703