mirror of
https://github.com/postgres/pgweb.git
synced 2025-08-10 00:42:06 +00:00
33 lines
1.2 KiB
HTML
33 lines
1.2 KiB
HTML
{%extends "base/page.html"%}
|
|
{%block title%}Manual Archive{%endblock%}
|
|
{%block contents%}
|
|
|
|
<h1>Manual Archive <i class="fas fa-book"></i></h1>
|
|
|
|
<p>Following are links to manuals (both online and printable versions) for PostgreSQL releases that are no longer supported.
|
|
If you are still using any of these releases, you are strongly advised to upgrade.</p>
|
|
|
|
<table class="table table-striped">
|
|
<thead class="thead-light">
|
|
<tr>
|
|
<th>Online Version</th>
|
|
<th>PDF Version</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{%for v in versions%}
|
|
<tr{%if forloop.last%}{%endif%}>
|
|
<td>
|
|
<a href="/docs/{{v.numtree}}/static/{{v.indexname}}">{{v.treestring}}</a>
|
|
</td>
|
|
<td>
|
|
{%if v.a4pdf%}Comprehensive Manual: <a href="/files/documentation/pdf/{{v.numtree}}/postgresql-{{v.numtree}}-A4.pdf">A4 PDF</a> <span class="txtMediumGrey">({{v.a4pdf|filesizeformat}})</span>{%endif%}
|
|
{%if v.uspdf%}Comprehensive Manual: <a href="/files/documentation/pdf/{{v.numtree}}/postgresql-{{v.numtree}}-US.pdf">US PDF</a> <span class="txtMediumGrey">({{v.uspdf|filesizeformat}})</span>{%endif%}
|
|
{%if not v.a4pdf and not v4.uspdf%}PDF version not available{%endif%}
|
|
</td>
|
|
</tr>
|
|
{%endfor%}
|
|
</tbody>
|
|
</table>
|
|
{%endblock%}
|