{% extends "base.html" %} {% block title%}{% if form.manipulator.change %}Edit{% else %}Add{% endif %} a Genre{% endblock %} {% block content %}

{% if form.manipulator.change %}Edit{% else %}Add{% endif %} a Song

{% if form.has_errors %}

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

{% endif %}

{{ form.desc }} {% if form.desc.errors %}*** {{ form.desc.errors|join:", " }}{% endif %}

<==Back   
{% endblock content %}