-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy patheventview.html
More file actions
59 lines (56 loc) · 2.52 KB
/
eventview.html
File metadata and controls
59 lines (56 loc) · 2.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{% extends 'base.html' %}
{% block head %}
{{ super() }}
<title>View Event</title>
<link href="{{ url_for('static', path='event/eventview.css') }}" rel="stylesheet">
{% endblock head %}
{% block content %}
<div class = "event_view_wrapper container col col-12">
<!-- Temporary nav layout based on bootstrap -->
<ul class="nav nav-tabs" id="event_view_nav" role="tablist">
<li class="nav-item">
<a class="nav-link {% if not comment %}active{% endif %}" id="eventdetails-tab" data-bs-toggle="tab" href="#eventdetails" role="tab" aria-controls="eventdetails" aria-selected="true">
Event Details
</a>
</li>
<li class="nav-item">
<a class="nav-link {% if comment %}active{% endif %}" id="comments-tab" data-bs-toggle="tab" href="#comments" role="tab" aria-controls="comments" aria-selected="true">
Comments
</a>
</li>
<!-- Copy commented section to add another navigation item -->
<!-- <li class="nav-item">
<a class="nav-link" id="(CHANGE_ME)-tab" data-bs-toggle="tab" href="#(CHANGE_ME)" role="tab" aria-controls="(CHANGE_ME)" aria-selected="true">
(CHANGE_ME)
</a>
</li> -->
</ul>
<div class="tab-content" id="event_view_tabs">
<div class="tab-pane fade {% if not comment %}show active{% endif %}" id="eventdetails" role="tabpanel" aria-labelledby="eventdetails-tab">
{% include "event/partials/view_event_details_tab.html" %}
</div>
<div class="tab-pane fade {% if comment %}show active{% endif %}" id="comments" role="tabpanel" aria-labelledby="comments-tab">
{% include 'event/partials/comments_tab.html' %}
</div>
<!-- Copy commented section to add another tab -->
<!-- <div class="tab-pane fade" id="(CHANGE_ME)" role="tabpanel" aria-labelledby="(CHANGE_ME)-tab">
ADD INCLUDE HERE
</div> -->
</div>
<<<<<<< HEAD
<!-- Copy commented section to add another tab-->
<!-- <div class="tab-pane fade" id="(CHANGE_ME)" role="tabpanel" aria-labelledby="(CHANGE_ME)-tab">-->
<!-- ADD INCLUDE HERE -->
<!-- </div>-->
</div>
<div class="event_info_buttons_row event_info_row_end">
<!-- Buttons could and should be replaced with button-like anchors if need so -->
<button type="button">Duplicate</button>
<button type="button">Edit</button>
{% if event.is_public %}
<button type="button">Join event</button>
{% endif %}
=======
>>>>>>> 8cd3a6e3c8c94ff0e9c86c9a6ed15c9856f757f9
</div>
{% endblock content %}