{% extends "repository/base.html" %} {% load i18n %} {% load markup %} {% load show_stars %} {% load repository_filters %} {% load paginator %} {% block title %}{% trans "Repository" %} :: {{ object.klass }} :: {{ object.name }}{% endblock %} {% block breadcrumbs %}{% trans "Repository" %} / {% trans "Method" %} / {% trans "View" %} / {{ object.name }} {% endblock %} {% block extrahead %} {% endblock %} {% block content %}

{% trans "View" %} {{ object.name }} ({% if object.is_public %}{% trans "public" %}{% else %}{% trans "private" %}{% endif %})

{{ object.pub_date|date:"Y-m-d H:i" }} {% trans "by" %} {{ object.user.username }} | {% trans "Version" %} {{ object.version }} | {% trans "Rating" %} {% show_stars current.rating_avg of 5 round to half %}
{% include "repository/rating_hide.html" %}
{% trans "ACTIVATE" %} {% trans "EDIT" %} {% trans "FORK" %} {% trans "DELETE" %} {% if dependent_entries_exist %}

Object is LOCKED because others depend on it.
Fork to change.

{% endif %}

{% include "repository/conversion_failed.html" %}
{% trans "Summary" %}
{{ object.summary|edit_if_empty|markdown:"safe" }}
{% trans "License" %}
{{ object.license.name }}
{% trans "Tags" %}
{% for tag in object.get_tags %}{% if tag %}{{ tag }} {% endif %}{% endfor %}
{% trans "Feature Processing" %}
{{ object.feature_processing }}
{% trans "Parameters" %}
{{ object.parameters }}
{% trans "Operating System" %}
{{ object.os }}
{% trans "Code" %}
{{ object.code|markdown:"safe" }}
{% trans "Software Packages" %}
{{ object.software_packages|markdown:"safe" }}
{% trans "Completeness of this item currently" %}: {{ object.completeness }}%.
{% if can_edit %}{% trans "You can" %} {% trans "edit this item" %} {% trans "to add more meta information and make use of the site's premium features" %}.{% endif %}
{% trans "Description" %}
{{ object.description|edit_if_empty|markdown:"safe" }}
{% trans "URLs" %}
{{ object.urls|edit_if_empty }}
{% trans "Publications" %}
    {% for p in object.publications.all %}
  • {{ p.content|edit_if_empty|markdown:"safe" }}
  • {% endfor %}
{% if versions.has_previous %}« {% trans "prev" %}{% endif %}
{% for v in versions.object_list %} revision {{ v.version }}
by {{ v.user }} on {{ v.pub_date|date:"Y-m-d H:i" }}
{% endfor %}
{% if versions.has_next %}{% trans "next" %} »{% endif %}
{% load comments %} {% get_comment_list for repository.method current.id as comment_list %} {% get_comment_form for repository.method current.id as form %} {% include "comments/list.html" %} {% include "comments/form.html" %}

This item was downloaded {{ current.downloads }} times and viewed {{ current.hits }} times.

{% if page.object_list %}

Method {{ object.name }} has been applied the following tasks:

{% paginator %} {% for o in page.object_list %} {% endfor %}
SubmitterTask (version)CurveScoreDate
{{ o.method.user }} {{ o.task.name }} ({{ o.task.version }}) {% ifequal o.complex_result_type "Curve" %} {% else %} - {% endifequal %} {{ o.aggregation_score }}  predictions {{ o.pub_date|date:"Y-m-d H:i" }}
{% paginator %} {% endif %} {% ifequal page.object_list.0.complex_result_type "Curve" %} {% endifequal %} {% if result_form %}
{{ result_form.task.errors }}
{{ result_form.task }}
{{ result_form.challenge.errors }}
{{ result_form.challenge }}
{{ result_form.output_file.errors }}
{{ result_form.output_file }}
{% else %} {% trans "To submit a result, please" %} sign in. {% endif %}
{% endblock %}