event-details.html 804 Bytes
Newer Older
1
{% extends 'base.html' %}
2 3
{% load static %}

4
{% block title %} {{ object.activity }} {% endblock %}
5
{% block heading %}
6
    <h1 class="subheader"> {{ object.activity }} </h1>
7 8 9
{% endblock %}

{% block content %}
10
	<div class="separator-bar"></div>
11
    <div id="main">
12 13 14 15
            <p class="detail-header"> Target Date & Time: {{ event.target_datetime }} </p>
            <p class="detail-header"> Estimated Hours: {{ event.estimated_hours }} </p>
            <p class="detail-header"> Course: {{ event.course }} </p>
            <p class="detail-header"> Location: {{ event.location }} </p>
16 17
    </div>

18 19
    <div class="separator-bar"></div>
    <button class="action-button" onclick="window.location.href='{% url 'calendar:event-edit' pk=object.pk %}';">
20 21 22 23
        Edit Activity
    </button>

{% endblock %}