WU/templates/resources.html

82 lines
3.2 KiB
HTML
Raw Normal View History

2018-12-19 01:54:56 +01:00
<!DOCTYPE html>
<!--<html lang="en">-->
<html lang="pl-PL">
<head>
<meta charset="UTF-8">
2019-01-14 16:28:17 +01:00
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>WU - materiały</title>
<link rel="stylesheet" href="../static/style.css" type="text/css" />
<link rel="stylesheet" href="../static/fontello-1e13f6ba/css/fontello.css" type="text/css" />
<link href="https://fonts.googleapis.com/css?family=Happy+Monkey|Open+Sans+Condensed:300&amp;subset=latin-ext" rel="stylesheet">
<script src="../static/timer.js"></script>
2018-12-19 01:54:56 +01:00
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
2019-01-14 16:28:17 +01:00
<link rel="stylesheet" type="text/css" href="../static/signup.css">
2018-12-19 01:54:56 +01:00
<link href="http://getbootstrap.com/examples/jumbotron-narrow/jumbotron-narrow.css" rel="stylesheet">
<link href="../static/css/signup.css" rel="stylesheet">
<link rel="stylesheet" href="../static/css/calendar.css">
</head>
2019-01-14 16:28:17 +01:00
<body onload="odliczanie();">
2018-12-19 01:54:56 +01:00
<div class="container">
2019-01-14 16:28:17 +01:00
<div class="rectangle">
<div id="logo"><a href="/userHome" class="tilelinkhtml5"><img src="../static/Wirtualna Uczelnia.png" alt="Wirtualna Uczelnia"></a></div>
<div class="tile3">
<a href="/logout" class="tile3link">Wyloguj</a>
</div>
<div class="tile3">
<a href="/userHome" class="tile3link">Główna</a>
</div>
<div id="zegar">12:00:00</div>
<div style="clear: both;"></div>
2018-12-19 01:54:56 +01:00
</div>
2019-01-14 16:28:17 +01:00
<div class="square">
<div class="wrapper">
2018-12-19 01:54:56 +01:00
<div class="col-xs-6">
2019-01-14 16:28:17 +01:00
<h3>Wrzuć materiał</h3>
<form action="resources" method="post" enctype="multipart/form-data">
<input type="file" name="fileToUpload" id="fileToUpload">
<input type="submit" value="Przekaż plik" name="submit">
</form>
</div>
</div>
</div>
<div style="clear:both;"></div>
<div class="square">
<div class="tile2">
<h1>Wszystkie materiały uczelni</h1>
2018-12-19 01:54:56 +01:00
<h2>Materiały do pobrania:</h2>
<!-- <form action="downloadResource" method="get" enctype="multipart/form-data"> -->
{% for key, value in items.items() %}
{% if key == "children" %}
{% for val in value %}
{% for k, v in val.items() %}
<h3><ul><a href="{{ v }}">{{ v[v.index('\\')+1:] }}</a></ul></h3>
<!-- <ul>{{ value }}</ul> -->
<!-- <h2>Value: {{value}}</h2> -->
{% endfor %}
{% endfor %}
{% endif %}
{% endfor %}
</div>
2019-01-14 16:28:17 +01:00
<div style="clear: both;">
</div>
<div class="Foot">
Wykonawcy projektu: Eryka Przewoźnik, Beata Dylewska, Adrianna Ubych, Maciej Mieszczyński, Jakub Rezler
2018-12-19 01:54:56 +01:00
</div>
</div>
</div>
</body>
</html>