I have this if for a static page:
{% if request.get_full_path == "billing/address/" %}
test
{% endif %}
how can I replace billing/address/ with the path getting from here:
path('billing/address/<slug:address_slug>/', views.addressChange, name='edit-address')
Thanks guys