Open
Description
If I use joeflow in an app in my project, the method to get the url namespace returns a wrong resulst.
it should be something like
return f"{cls._meta.app_label}:{cls.__name__.lower()}"
maybe somehow conditionally check if cls._meta.app_label
exists
additionally one needs to specify the urls as follows:
path(
"whateveriwant/",
include(workflows.VeryCoolWorkflow.urls(), namespace="verycoolworkflow"),
),