{% extends "plugins.html" %} {% from "macros/docs.html" import get_doc_icon, get_doc_link %} {% block body %} {% set pd = project_data(this.name) %} {% if this.summary %} {% set summary = this.summary %} {% elif pd.summary %} {% set summary = pd.summary %} {% endif %} {# #}

Plugin – {{ pd.name }} {{ pd.version }}

{{ summary }}

Project links

{% if 'github' in pd.home_page %}

GitHub Statistics

{% endif %}

Meta

Version: {{ pd.version }}

Author: {% if pd.author_email %} {{ mailto_link(pd.author_email, pd.author) }} {% else %} {{ pd.author }} {% endif %}

Tags

{% if this.tags %} {% for t in this.tags|sort %} {{ "and " if loop.last and not loop.first }} {{ t }}{{ ", " if not loop.last }} {% endfor %} {% else %}

Plugin has no tags.

{% endif %}

View all tags.

Project Description

{% if pd.description %} {{ pd.description|safe }} {# comes out as a text string always #} {% else %} Plugin has no long_description {% endif %} {% if this.allow_comments %}

Comments

{{ render_disqus_comments() }}
{% endif %}
{% endblock %}