{% extends "base.html" %} {% block title %}Musician: {{object.name}}{% endblock %} {% block subhead %}Musician: {{object.name}}{% endblock %} {% block containerextra %}itemscope itemtype="https://schema.org/Person"{% endblock %} {% block content %} {% if user.is_authenticated %}{% endif %}
{% if photos %} {% endif %}
{% if object.description %}
Description
{{object.description_html|safe}}
{% endif %}
Added
{{object.added|date}}
Modified
{{object.modified|date}}
{% if tags %}
Tags
{% for mt in tags %} {{mt.tag.name}} {% endfor %}
{% endif %}
{% if object.links.all %}

Links

{% if user.is_authenticated %}{% endif %}
{% for link in object.links.all %}
{{link.description}}
{% endfor %}
{% endif %} {% if photos %}

Photos

{% if user.is_authenticated %}
{% for photo in photos %} {% endfor %}
{% endif %} {% if gear %}

Gear

{% if user.is_authenticated %}{% endif %}
{% for musiciangear in gear %} {% endfor %}
{{musiciangear.gear.manufacturer.name}} {{musiciangear.gear.name}} {{musiciangear.description}} {% if musiciangear.musiciangearphoto_set.all %} {% for photo in musiciangear.musiciangearphoto_set.all %} {% endfor %} {% endif %} {% if musiciangear.gear.geartag_set.all %}

{% for tag in musiciangear.gear.geartag_set.all %} {{tag.tag.name}} {% endfor %}

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