{% extends 'base.html' %} {% block content %}

{% block title %}{{ _('Détails de "%(name)s"', name=partition.name)}}{% endblock %}


{% set _ = partition.load_attachments() %}
{{ _("Responsable de l'ajout") }} {% if user is not none %} {% else %} {{ _("Inconnu") }} {% endif %}
{{ _("Type d'ajout") }} {% if partition.source == "unknown" or partition.source == "upload" %} {{ partition.source }} {% else %} search {% endif %}
{{ _("Albums") }}
{{ _("Fichier") }}
{{ _("Titre") }}
{{ _("Auteur") }}
{{ _("Paroles") }}
{{ _("Pièces jointes") }} {% if partition.attachments %} {% set number=partition.attachments | length %} {{ _("Oui, %(number)s", number=number) }} {% else %} {{ _("En rajouter") }} {% endif %}
{% endblock %}