bornhack-website/villages/templates/village_detail.html

17 lines
273 B
HTML
Raw Normal View History

2016-07-05 21:43:18 +00:00
{% extends 'base.html' %}
{% load commonmark %}
{% block content %}
<h3>{{ village.name }}</h3>
{{ village.description|commonmark }}
<hr />
{% if user in village.users.all %}
<a href="{% url 'villages:update' slug=village.slug %}">Edit</a>
{% endif %}
{% endblock %}