{% 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 "Data" %} / {% 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 "Attribute Types" %}
{{ object.get_attribute_types }}
{% trans "Download" %}
{% trans "# Instances" %}: {{ object.num_instances }} / {% trans "# Attributes" %}: {{ object.num_attributes }}
{% if object.slug %} {% if object.has_h5 %} {% trans "HDF5" %} ({{ object.file.size|filesizeformat }}) {% trans "XML" %} {% trans "CSV" %} {% trans "ARFF" %} {% trans "LibSVM" %} {% trans "Matlab" %} {% trans "Octave" %} {% comment %} {% trans "RData" %} {% endcomment %} {% else %} {{ object.format }} ({{ object.file.size|filesizeformat }}) {% endif %} {% endif %} {% if object.file.size > download_warning_limit %}

{% trans "Files are converted on demand and the process can take up to a minute. Please wait until download begins." %}

{% endif %}
{% 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 "Original Data Format" %}
{{ object.format }}
{% trans "Name" %}
{{ extract.name }}
{% trans "Version" %} mldata
{{ extract.mldata }}
{% trans "Comment" %}
{{ extract.comment|markdown:"safe" }}
{% trans "Names" %}
{% for name in extract.names %}{{ name }},{% endfor %}
{% if extract.types %}
{% trans "Types" %}
    {% for type in extract.types %}
  1. {{ type}}
  2. {% endfor %}
{% endif %}
{% trans "Data (first 10 data points)" %}
    {% if extract.names_cut %} {% for d in extract.names_cut %} {% endfor %} {% endif %} {% for d in extract.data %} {% for c in d %} {% endfor %} {% endfor %}
    {{d}}
    {{c}}
{% 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 %}
{% trans "Data Source" %}
{{ object.source }}
{% trans "Measurement Details" %}
{{ object.measurement_details|markdown:"safe" }}
{% trans "Usage Scenario" %}
{{ object.usage_scenario|markdown:"safe" }}
{% 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.data current.id as comment_list %} {% get_comment_form for repository.data 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 %}

Tasks defined on dataset {{ object.name }}

{% paginator %}
    {% for object in page.object_list %}
  • {{ object.name }} {{ object.pub_date|date:"Y-m-d H:i" }}
  • {% endfor %}
{% paginator %} {% else %}

No Tasks yet on dataset {{ object.name }}

{% endif %} {% trans "Submit a new Task for this Data item" %}
{% endblock %}