{% extends "base.html" %} {% block title %}{{ _('Debugger - ') + function_name }}{% endblock %} {% block init_script %} try { require( ['pgadmin', 'pgadmin.tools.debugger.direct'], function(pgAdmin, pgDirectDebug) { pgDirectDebug.init({{ uniqueId }}, {{ debug_type }}); }, function() { /* TODO:: Show proper error dialog */ console.log(arguments); }); } catch (err) { /* Show proper error dialog */ console.log(err); } {% endblock %} {% block body %} {% if is_desktop_mode and is_linux %} {% endif %}
{% endblock %} {% block css_link %} {% for stylesheet in stylesheets %} {% endfor %} {% endblock %}