Files @ 5479785cc100
Branch filter:

Location: website/conservancy/assignment/urls.py

bsturmfels
Add default line-height to <li> elements

They currently look too tight compared with paragraph text.
1
2
3
4
5
6
7
8
from django.urls import path

from .views import AssignmentCreateView, AssignmentThanksView

urlpatterns = [
    path('', AssignmentCreateView.as_view(), name='assignement-add'),
    path('<uuid:pk>/', AssignmentThanksView.as_view(), name='assignment-thanks'),
]