in src/wagtail_localize_smartling/utils.py [0:0]
def get_snippet_admin_url(snippet):
# Crude, but simple and effective
app_label = snippet._meta.app_label
model_name = snippet._meta.model_name
admin_root_path = reverse("wagtailadmin_home")
return f"{admin_root_path}snippets/{app_label}/{model_name}/edit/{snippet.pk}/"