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

{% trans type=widget_name|capitalize %}{{ type }} widget list{% endtrans %}

{% 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 %}
{% trans %}Widget Title{% endtrans %} {% trans %}Code{% endtrans %} {% trans %}Actions{% endtrans %}
{{ widget.title }} <script type="text/javascript" src="{{ protocol }}://{{ request.get_host() }}{% url render_ask_widget widget.id %}" ></script> {% trans %}Edit{% endtrans %} | {% trans %}Delete{% endtrans %}
{{ widget.title }} <iframe src="{{ protocol }}://{{ request.get_host() }}{% url question_widget widget.id %}" > </iframe> {% trans %}Edit{% endtrans %} | {% trans %}Delete{% endtrans %}
{% 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 %}