{% extends "base.html" %} {% load bootstrap %} {% block title %}Musicians{% endblock %} {% block content %} {% if user.is_authenticated %} {% if object %}

Update Musician:

{% else %}

Add Musician:

{% endif %} {% if form.has_errors %}

Please correct the following error{{ form.errors|pluralize }}:

{% endif %} {% if object %}
{% else %} {% endif %} {{form|bootstrap}}
{% if object %}

Links

{{ object.links_formset }}

Photos

{{ object.photos_formset }}

Gear

{{ object.gear_formset }}

{% endif %} {% else %}

not authenticated

{% endif %} {% endblock %}