{% extends "base.html" %} {% load i18n %} {% load url from future %} {% block breadcrumbs %}
  • {{ object }}
  • {% trans "widgets" %}
  • {% endblock %} {% block content %}

    {% trans "Widgets" %}

    {% trans "You can use following widgets to promote translation of your project. They can increase visibility of your translation projects and bring new contributors." %}

    {% blocktrans %}You can also point newcomers to the introduction page at {{ engage_url }}.{% endblocktrans %}

    {% trans "Image widgets" %}

    {% for widget in widget_list %}

    {% blocktrans with widget.name as widget %}Image {{ widget }}{% endblocktrans %}

    {% trans "Color variants:" %}

    {% for color in widget.colors %} {% endfor %}

    {% trans "Code:" %}

    {% for color in widget.colors %}
    <a href="{{ engage_url_track }}">
    <img src="{{ widget_base_url }}{{ widget.name }}/{{ color }}/" />
    </a>
    
    {% endfor %} {% endfor %} {% endblock %}