{% extends "base.html" %} {% load static %} {% load i18n %} {% block more_head %} {% endblock %} {% block title %}- {{ app.fullname }}{% endblock %} {% block content %} {% csrf_token %} {# "Go back to" link #} {% if go_back_to_title %}
← Go back to {% autoescape off %}{{ go_back_to_title }}{% endautoescape %}
{% endif %} {# App header #}
{# App icon #}
{# App name and description #}

{{ app.fullname }}

{% if app.description %}{{ app.description }}{% endif %}
{# Editor menu #} {% if is_editor %}
{% endif %} {# End editor menu #}
{# End app header #} {# App usage info (ratings, downloads, citations, discussions) #}
{# Ratings #}
({{ app.votes|escapejs }}) {# End Ratings #} {# Downloads #} {% if app.has_releases %} {{ app.downloads }} downloads {% endif %} {# End Downloads #} {# Citations #} {% if app.citation %} | {% trans " citations" %} {% endif %} {# End Citations #} {# discussions #} | {% trans "discussions" %} {# End Discussions #} {# badges #} {% if app.has_releases %} {% endif %} {% if app.competition_winner_dec_2012 %} {% endif %} {% if app.coderepo %} {% endif %} {% if app.automation %} {% endif %} {# end badges #}
{# End app usage info #} {# Main app page content #}
{# Tabs #} {# End Tabs #} {# Tab content #}
{# Details tab #}
{# Categories #} {% if app.tags.all %}
Categories: {% for tag in app.tags.all %} {{ tag.fullname }}{% if not forloop.last %}, {% endif %} {% endfor %}
{% endif %} {# End Categories #} {# Screenshots #} {% if app.screenshot_set.all %}
{% for screenshot in app.screenshot_set.all %} {% endfor %}
{% endif %} {# End Screenshots #} {# Details #} {% if app.details %}
{{ app.details }}
{% endif %} {# End Details #} {# Authors #} {% if app.authors.all %}
Authors:
{% endif %} {# End Authors #}
{# End Details tab #} {# Releases tab #} {% if app.has_releases %}
{% for release in app.releases %}
{# Release version #}

{{ release.version }}

{# End Release version #} {# Works with #}

Works with Cytoscape {{ release.works_with }}

{# End Works with #} {# Release #} {% if release.releaseapi_set.count %} {% with releaseapi=release.releaseapi_set.get %}

API   pom.xml   Javadocs

{% endwith %} {% endif %} {# Release dependencies #} {% if release.dependents.count %}

Apps that depend on this release

{% endif %} {# End Release dependencies #} {% if release.notes %}

Release Notes

{{ release.notes }}
{% endif %} {# End Release #}
{% endfor %} {# end looping thru each release #}
{% endif %} {# End Releases tab #}
{# End Tab content #} {# Right-hand panels #}
{# 3.0 download panel #} {% if app.has_releases %}
CYTOSCAPE 3

Version {{ cy3_latest_release.version }}

{% if app.license_text %}

License Click here

{% endif %}

Released {{ cy3_latest_release.created|date:'j M Y' }}

Works with Cytoscape {{ cy3_latest_release.works_with }}

Download Stats Click here

{% endif %} {# end 3.0 download panel #} {# 2.x download panel #} {% if app.cy_2x_plugin_download %}
CYTOSCAPE 2
{% if app.has_releases %}

Version {{ app.cy_2x_plugin_version }}

{% else %}

Version {{ app.cy_2x_plugin_version }}

{% if app.license_text %}

License Click here

{% endif %} {% endif %} {% if app.cy_2x_plugin_release_date %}

Released {{ app.cy_2x_plugin_release_date|date:'j M Y' }}

{% endif %} {% if app.cy_2x_versions %}

Works with Cytoscape {{ app.cy_2x_versions }}

{% endif %}
{% endif %} {# end 2.x download panel #} {# in case there are no downloads... #} {% if not app.has_releases and not app.cy_2x_plugin_download %}
No download available.
{% endif %} {# end no downloads #} {# app resources #}
{# end app resources #}
{# end right-hand panels #}
{# end main app page content #} {# Delete all ratings modal dialog #} {# End modal dialog #} {# License modal dialog #} {% if app.license_confirm and app.license_text %} {% endif %} {# End license modal dialog #} {# Vote popover content #} {# End vote popover content #} {% endblock %}