organization filters
[redakcja.git] / redakcja / templates / main.html
1 {% extends "catalogue/base.html" %}
2 {% load i18n %}
3 {% load static %}
4
5
6 {% block content %}
7
8 <div class="jumbotron">
9 <div class="row">
10 <div class="col-md-8 col-md-offset-2">
11
12     <h1><span style="color: #dd8000">MIL</span>/<span style="color: #0a0">PEER</span>
13     </h1>
14
15 <div class="row">
16
17 <div class="col-md-6">
18
19 {% blocktrans %}
20     <p>Media &amp; Information Literacy<br>
21     Platform for Exchanging<br>
22     Educational Resources<br>
23     </p>
24 {% endblocktrans %}
25     <a class="btn btn-success btn-lg" id="tuton">{% trans "Create and share your resources<br>Start tutorial" %}</a>
26 </div>
27 <div class="col-md-6">
28     {#<a href="/competition/" class="btn btn-success btn-lg">{% trans "Competition" %}</a>#}
29     <p style="margin-top: 17px;">{% trans "Joint project by:" %}</p>
30     <a target="_blank" href="http://evensfoundation.be"><img style="margin-top: 20px; width: 145px;margin-right: 40px;" src="{% static 'img/evens2.png' %}"></a>
31     <a target="_blank" href="https://nowoczesnapolska.org.pl"><img style="margin-top: 20px; width: 135px;" src="//nowoczesnapolska.org.pl/wp-content/themes/koed/images/nowoczesnapolska.org.pl.png"></a>
32 </div>
33 </div>
34 </div>
35
36 </div>
37 </div>
38
39 {{ block.super }}
40 {% endblock %}
41
42 {% block inner_content %}
43
44
45 <section>
46 <h1>{% trans "See active organizations and join" %}</h1>
47 {% for org in organizations %}
48     {% include "organizations/organization_box.html" %}
49 {% endfor %}
50 {% if more_organizations %}
51 <p style="text-align: right"><a href="{% url 'organizations' %}">{% trans "More organizations" %}</a></p>
52 {% endif %}
53 </section>
54
55
56
57
58 <section>
59 <h1>{% trans "Finished resources" %}</h1>
60 {% for doc in finished %}
61     {% include "catalogue/resource_box.html" with link_url='catalogue_html' %}
62 {% endfor %}
63 {% if more_finished %}
64 <p style="text-align: right"><a href="{% url 'catalogue_finished' %}">{% trans "More finished resources" %}</a></p>
65 {% endif %}
66 </section>
67
68 <section>
69 <h1>{% trans "Upcoming resources" %}</h1>
70 {% for doc in upcoming %}
71     {% include "catalogue/resource_box.html" with link_url='catalogue_preview' %}
72 {% endfor %}
73 {% if more_upcoming %}
74 <p style="text-align: right"><a href="{% url 'catalogue_upcoming' %}">{% trans "More upcoming resources" %}</a></p>
75 {% endif %}
76 </section>
77
78
79
80
81 <div id="tutModal" class="modal fade bs-example-modal-sm" tabindex="-1" role="dialog" aria-labelledby="mySmallModalLabel" aria-hidden="true">
82   <div class="modal-dialog modal-sm">
83     <div class="modal-content">
84         <div class="modal-header"><h4>{% trans "Tutorial mode" %}</h4></div>
85         <div class="modal-body"><p>{% trans "Tutorial will help you navigate through the platform. You can disable it at any point." %}</p></div>
86         <div class="modal-footer">
87             <button type="button" class="btn btn-default" data-dismiss="modal">OK</button>
88         </div>
89     </div>
90   </div>
91 </div>
92 {% endblock %}