summaryrefslogtreecommitdiff
path: root/templates/profserv/root.html
blob: 5f8809d14ccf32a49c940f2890e6511c4e7188b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{%extends "base/page.html"%}
{%block title%}{{title}}{%endblock%}
{%block contents%}
<h1>{{title}}  <i class="fa fa-question-circle"></i></h1>

{%if support%}
<p>Commercial support is available from many different companies providing professional services
to the PostgreSQL community.</p>
{%else%}
<p>Many companies provide hosting solutions based on PostgreSQL. Some also provide complete
solutions including support contracts.</p>
{%endif%}

<p>If your company would like to be listed here, please fill out this <a href="/account/services/new/">form</a>.</p>

<p>Please select a region:</p>

<ul>
{%for rl, rn in regions%}
 <li><a href="/support/professional_{{what}}/{{rl}}/">{{rn}}</a></li>
{%endfor%}
</ul>

{%endblock%}