from django.urls import pathfrom . import viewsapp_name = 'posts'urlpatterns = [path('', views.index, name='index'),path('profile/<username>/', views.profile, name='profile'),path('posts/<post_id>/', views.post_detail, name='post_detail'),path('create/', views.post_create, name='post_create'),path('posts/<post_id>/edit/', views.post_edit, name='post_edit'),path('group/<slug>/', views.group_posts, name='group_list')]