I’d like to integrate django Databrowse into my application.
It comes down to pointing to databrowse urls from within template or view for enhanced drill down functionality of the databrowse.
Is there an easy way to extract the url from a databrowse object?
Ended up writing mixin class that fetches relevant EasyInstance and reuses the
url()of it:Now in my templates I can reuse
my_model_instance.urltag pointing to databrowse object url.