Skip to content
Snippets Groups Projects
Unverified Commit c1d3047b authored by Tom Teichler's avatar Tom Teichler :beers:
Browse files

Fix typo.

parent 7cb5c317
No related branches found
No related tags found
No related merge requests found
......@@ -11,7 +11,7 @@ urlpatterns = [
path('accounts/', include('django.contrib.auth.urls')),
path('persons', views.persons, name='persons'),
path('persons/accounts', views.persons_accounts, name='persons_accounts'),
pat('person', views.person, name='person'),
path('person', views.person, name='person'),
path('person/<int:id_>', views.person,
{'template': 'full'}, name='person_by_id'),
path('person/<int:id_>/card', views.person,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment