{% extends "two_column_body.html" %} {% block title %}{{widget_name|capitalize}} widget list{% endblock %} {% block content %}

{{widget_name|capitalize}} widget list

{% if request.is_secure() %} {% set protocol='https' %} {% else %} {% set protocol='http' %} {% endif %} {% if widget_name == 'ask' %} {%for widget in widgets%} {%endfor%} {%else%} {%for widget in widgets%} {%endfor%} {%endif%}
Widget Title Code Actions
{{widget.title}} <script type="text/javascript" src="{{ protocol }}://{{request.get_host()}}{% url render_ask_widget widget.id%}" ></script> Edit | Delete
{{widget.title}} <iframe src="{{ protocol }}://{{request.get_host()}}{% url question_widget widget.id%}" > </iframe> Edit | Delete
{% endblock %} {% block endjs %} {% endblock %} {% block sidebar %}

{% trans %}How to use?{% endtrans %}

{% trans %} Just copy the <script> tag provided and paste it in the site where you wan to put it. {%endtrans%}

{% endblock %}