{% extends "base.html" %} {% load i18n %} {% block content %}

{{ object.bulletin_type|capfirst }}: {{ object.title }} {% if request.user.is_authenticated %} Edit {% endif %}

{% if category %}

{{ object.category.title }}

{% endif %} {% include "bulletin_board/feeds/bulletin_description.html" with obj=object %}

Contact {{ object.contact_person }}

{% if object.phone or object.email %} {% if object.phone %}

Phone: {{ object.phone }}

{% endif %} {% if object.email %}

Email: {{ object.email }}

{% endif %} {% endif %}

Back to Listing

{% endblock %}