{% extends 'core/layout.html' %}
{% load crispy_forms_tags %}
{% load i18n %}
{% block title %}{% translate "add"|capfirst %} {% translate "place"|capfirst %}{% endblock title %}
{% block breadcrumb %}
{# NOTE: Translations that are 'supossed' to be on the go should be declared first #}
{# NOTE: Is should add a 'as' in order to NOT render on template #}
{% translate "add geography" as breadcrumb_translation %}
{% include 'common/include/breadcrumb.html' with breadcrumbs='worlds=roleplay:world:list,add geography' %}
{% endblock breadcrumb %}
{% block body_content %}
{% blocktranslate with name=parent_site.name %}
Add geography to {{ name }}!
{% endblocktranslate %}
{% endblock body_content %}