Gibbs Consulting
Gibbs Consulting
@michalstepniewskiada from a quick scan of the [overview](https://dash.plotly.com/dash-bio) page there's nothing immediately obvious to suggest that it would not. Are there any error messages or warnings, either from the Django...
Thanks for spotting and reporting this. Its a straightforward enhancement and we'll try to add it (ie redirecting to a common link) at some point.
When you register you urls, you can name each route. Insert a link back to the homepage using something like `{% url "home"%}` where `home` should be replaced by the...
Ah OK, you want to be able to say to the outer page, from the inner iframe, 'please go to X'. I suspect your alternatives are (a) dont use the...
Change context in your python code to be a string (json.dumps should suffice as it is just a dictionary or use `context = "{'target_id': {'value': %s}}" % pk`) and use...
My mistake. Swap the quotes around to get valid json: context = '{"target_id": {"value": %s}}' % pk
What happens when you use ``` return render(request, 'model_results.html', {"context":'{"target_id": {"value": 67}}'}) ``` And then in your template ``` {%plotly_app name="tutorial_1" initial_arguments=context %} ``` In other words, directly specify the...
Are you running this through Django? The last two lines would suggest not.
Is there anything in your app to trigger the callback? I suspect that nothing is causing the callback to be triggered and as a result the app is displaying nothing....
@redtensor22 in the [second demo](https://github.com/GibbsConsulting/django-plotly-dash/blob/master/demo/demo/templates/demo_two.html) there is an example of doing this with the content in the template. If your view passed something like ``` # This is a json...