This repository has been archived by the owner on Apr 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmojeWydarzenia.html
63 lines (57 loc) · 2.35 KB
/
mojeWydarzenia.html
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
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://unpkg.com/bootstrap@3.3.7/dist/css/bootstrap.min.css">
</head>
<body>
<nav class="navbar navbar-default navbar-static-top">
<div class="container-fluid">
<ul class="nav navbar-nav navbar-right">
<li><a href="./index.html">Home</a></li>
<li><a href="./profil.html">Profil</a></li>
<li><a href="./mojeWydarzenia.html">Moje Wydarzenia</a></li>
<li><a href="./market.html">Rynek</a></li>
<li><a href="./wydarzenie.html">Stworz wydarzenie</a></li>
<li><a href="./login.html">Wyloguj</a></li>
</ul>
</div>
</nav>
<div class="container-fluid">
<div class="row main">
<div class="panel-heading">
<div class="panel-title text-center">
<h1 class="title">Moje Wydarzenia</h1>
<hr />
</div>
</div>
</div>
<table class="table table-bordered panel panel-primary">
<thead class="panel-heading">
<tr>
<th>Nazwa organizacji</th>
<th>Tytuł</th>
<th>Tagi</th>
<th>Data dodania</th>
<th>Data wydarzenia</th>
<th>Komentarz</th>
</tr>
</thead>
<tbody>
{% for event in user_events %}
<tr>
<td> {{% event.title %}} </td>
<!-- `tutaj podajesz w <td> pola ktora interesuja z eventu </td> -->
<td><button action="{% url "send_event_to_market" %}" type="button" id={{ event.owner.id }} class="btn"> Wyslij na rynek </button></td>
</tr>
{ % endfor %}
</tbody>
</table>
</div>
</body>
<script src="https://code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</html>