Fix unicode bug from python3 conversion
[pgweb/local.git] / templates / pugs / index.html
blobdb3608c659b9995e7fe7250af8b8d57b1e8f5f12
1 {%extends "base/page.html"%}
2 {%block title%}Local PostgreSQL User Groups{%endblock%}
3 {%block contents%}
4 <h1>Local User Groups <i class="fa fa-users"></i></h1>
6 <p>The PostgreSQL community is proud to have many local chapters that advocate and educate users about PostgreSQL. Below is a list of PostgreSQL User Groups (PUGs) sorted by country and local area. If you would like to start a PostgreSQL User Group, please send an email to <a href="mailto:usergroups@postgresql.org">usergroups@postgresql.org</a> and describe the PUG that you want to create.</p>
7 <p>If a PUG already exists in your area, follow the URLs below to find out how to attend and participate.</p>
9 {% for pug_group in pug_list %}
10 <h2>{{ pug_group.country }}</h2>
11 <ul>
12 {% for pug in pug_group.pugs %}
13 <li>
14 <strong>{{ pug.locale }}</strong>:
15 {% if pug.website_url %}
16 <a href="{{ pug.website_url }}" target="_blank">
17 {% endif %}
18 {{ pug.title }}
19 {% if pug.website_url %}
20 </a>
21 {% endif %}
22 {% if pug.website_url %}
23 (<a href="{{ pug.website_url }}" target="_blank">website</a>)
24 {% endif %}
25 {% if pug.mailing_list_url %}
26 (<a href="{{ pug.mailing_list_url }}" target="_blank">mailing list</a>)
27 {% endif %}
28 </li>
29 {% endfor %}
30 </ul>
31 {% endfor %}
32 {%endblock%}