{% extends 'core/layout.html' %} {% load static %} {% load i18n %} {% block css %} {% endblock css %} {% block title %}{{ object.name }} {% translate 'detail'|capfirst %}{% endblock title %} {% block breadcrumb %} {% include 'common/include/breadcrumb.html' with breadcrumbs='worlds=roleplay:world:list,detail' %} {% endblock breadcrumb %} {% block body_content %}

{{ object.name }}

{% blocktranslate with creator=object.owner.username|default:"Oil & Rope" created=object.entry_created_at %} Created by {{ creator }} ({{ created }}) {% endblocktranslate %}
{% include 'roleplay/world/include/tree_view.html' %}
{% static 'roleplay/img/places/default_image.png' as default_image %} {% include 'roleplay/include/world_image_carousel.html' with world=object controls=True only %}

{% if object.description %} {{ object.description|safe }} {% else %} {% translate "no description provided..."|capfirst %} {% endif %}

{% endblock body_content %} {% block javascript %} {# NOTE: Create Place Detail API for TreeMap #} {% endblock javascript %}