GetTogether/get_together/templates/get_together/show_event.html

15 lines
404 B
HTML

{% extends "get_together/base.html" %}
{% block content %}
<h2>About {{ event.name }}</h2>
<h4>Hosted by <a href="{% url "show-team" team.id %}">{{ team.name }}</a></h4>
{% include "events/event_details.html" %}
{% if can_edit_event %}
<form action="{% url 'edit-event' event.id %}" method="get">
<button type="submit" class="btn btn-secondary">Edit Event</button>
</form>
{% endif %}
{% endblock %}