{% extends "software/base_software.html" %} {% load safe_markup %} {% load markup %} {% load paginator %} {% load show_stars %} {% load comments %} {% block sectionid %}browse{% endblock %} {% block title %} {% if search_term %} Projects matching {{ search_term|escape }}. {% else %} {% if os_license %} Projects that use the {{ os_license }} license. {% else %} {% if language %} Projects that use {{ language }} as the programming language. {% else %} {% if username %} Projects submitted by {{ username }}. {% else %} {% if dataformat %} Projects supporting the {{ dataformat }} data format. {% else %} {% if opsys %} Projects running under {{ opsys }}. {% else %} {% if author %} Projects authored by {{ author }}. {% else %} {% if tags %} Projects that are tagged with {{ tags }}. {% else %} {% if jmlr %} Projects that also appeared in JMLR. {% else %} All entries {% endif %} {% endif %} {% endif %} {% endif %} {% endif %} {% endif %} {% endif %} {% endif %} {% endif %} {% endblock %} {% block billboard %} {% if search_term %} Projects matching {{ search_term|escape }}. {% else %} {% if os_license %} {{ object_list.count }} projects found that use the {{ os_license }} license. {% else %} {% if language %} {{ object_list.count }} projects found that use {{ language }} as the programming language. {% else %} {% if username %} {% ifequal user.username username %} You've {% else %} {{ username }} has {% endifequal %} posted {{ object_list.count }} project{{ object_list.count|pluralize }}. {% else %} {% if dataformat %} Projects supporting the {{ dataformat }} data format. {% else %} {% if opsys %} Projects running under {{ opsys }}. {% else %} {% if author %} Projects authored by {{ author }}. {% else %} {% if tags %} Projects that are tagged with {{ tags }}. {% else %} {% if jmlr %} Projects that also appeared in JMLR. {% else %} All entries. {% endif %} {% endif %} {% endif %} {% endif %} {% endif %} {% endif %} {% endif %} {% endif %} {% endif %} {% endblock %} {% block content %} {% if object_list %} {% paginator 5%} {% for object in object_list %}
{% if object.software.total_number_of_votes %} {% endif %}

{% if object.thumbnail %} {% if object.screenshot %} Logo {% else %} Logo {% endif %} {% else %} {% if object.screenshot %} Logo {% else %} {% ifequal object.software.user.username "r-cran-robot" %} Logo {% else %} Logo {% endifequal %} {% endif %} {% endif %} {% if object.jmlr_mloss_url %} JMLR {% endif %} {{ object.software.title }} {{ object.version }}

by {{ object.software.user.username }} - {{ object.updated_date|date:"F j, Y, H:i:s" }} CET [ {% if object.project_url %}Project Homepage {% endif %} BibTeX {% if object.paper_bib %}BibTeX for corresponding Paper{% endif %} {% if object.is_downloadable %}Download{% endif %} {% if user.is_authenticated %}Subscribe{% endif %} {% if user.is_authenticated %}Bookmark{% endif %} ] {% if object.software.total_number_of_views %} {{ object.software.total_number_of_views }} view{{ object.software.total_number_of_views|pluralize }}{% endif %}{% if object.software.total_number_of_downloads %}, {{ object.software.total_number_of_downloads }} download{{ object.software.total_number_of_downloads|pluralize }}{% endif %}{% get_comment_list for software.software object.id as comment_list %}{% if comment_list %}, {% get_comment_count for object as comment_count %} {{ comment_count }} comment{{ comment_count|pluralize }}{% endif %}, {{ object.software.get_subscription_count }} subscription{{ object.software.get_subscription_count|pluralize }}

Rating {% show_stars object.software.average_rating of 5 round to half %}
(based on {{ object.software.total_number_of_votes }} vote{{ object.software.total_number_of_votes|pluralize }})

About: {{ object.short_description }}

Changes: {{ object.changes_html|safe }}
    {% if object.get_authorlist %}
  • Authors: {% for o in object.get_authorlist %} {{ o.name|title }}{% if not forloop.last %}, {% endif %} {% endfor %}
  • {% endif %} {% if object.get_licenselist %}
  • License: {% for o in object.get_licenselist %} {{ o.name|title }}{% if not forloop.last %}, {% endif %} {% endfor %}
  • {% endif %} {% if object.get_languagelist %}
  • Programming Language: {% for o in object.get_languagelist %} {{ o.name|title }}{% if not forloop.last %}, {% endif %} {% endfor %}
  • {% endif %}
    {% if object.get_opsyslist %}
  • Operating System: {% for o in object.get_opsyslist %} {{ o.name|title }}{% if not forloop.last %}, {% endif %} {% endfor %}
  • {% endif %} {% if object.get_dataformatlist %}
  • Data Formats: {% for o in object.get_dataformatlist %} {{ o.name|title }}{% if not forloop.last %}, {% endif %} {% endfor %}
  • {% endif %} {% if object.jmlr_mloss_url %}
  • JMLR-MLOSS Publication: JMLR Page
  • {% endif %} {% if object.get_taglist %}
  • Tags: {% for o in object.get_taglist %} {{ o.name|title }}{% if not forloop.last %}, {% endif %} {% endfor %}
  • {% endif %}
{% endfor %} {% paginator 5%} {% else %} {% if search_term %}

Could not find any software matching query {{ search_term|escape }}.

{% else %}

No software posted yet.

{% endif %} {% endif %} {% endblock %}