Minor formatting changes.

This commit is contained in:
Marcus Scholz 2020-09-10 00:32:56 +02:00
parent 0c2b1a4699
commit 44b06d1c04
3 changed files with 3 additions and 3 deletions

View File

@ -26,7 +26,7 @@ urlpatterns = [
path('place/', PlaceListView.as_view(), name='place_list'),
path('flat/<slug:slug>/', FlatView, name='flatpage'),
# POST-only URL for tag submission
# POST-only URLs for tag submission
path('place/tag/<int:place_id>', PlaceTagSubmitView.as_view(), name='place_tag_submit'),
path('place/tag/delete/<int:tagged_id>/<int:tag_id>', PlaceTagDeleteView.as_view(), name='place_tag_delete')
]