Skip to content

Commit d53b860

Browse files
committed
Fix broken template include paths
Signed-off-by: Maurício Meneghini Fauth <[email protected]>
1 parent 546229f commit d53b860

19 files changed

+31
-31
lines changed

pmaweb/templates/_release.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
<p>Released {{release.date|date:"Y-m-d"}}, see <a href="{{ release.get_absolute_url }}">release notes</a> for details.</p>
55
{% endif %}
66

7-
{% include "components\_dllist.html" %}
7+
{% include "components/_dllist.html" %}

pmaweb/templates/about-website.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@ <h2 id="syndicate">Syndication</h2>
7272

7373
<p>You can also directly download latest version on following URLs:</p>
7474

75-
{% include 'components\_stable-download.html' %}
75+
{% include 'components/_stable-download.html' %}
7676

77-
{% include "components\_verify.html" %}
77+
{% include "components/_verify.html" %}
7878

7979
</div>
8080

pmaweb/templates/base.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
</head>
5959

6060
<body>
61-
{% include "components\_icon-library.html" %}
61+
{% include "components/_icon-library.html" %}
6262
<header>
6363
<nav class="navbar">
6464
<div class="nav-container">

pmaweb/templates/components/_dllist.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{% with release.get_downloads as download_list %}
44

55
{% if download_list %}
6-
{% include 'components\_dltable.html' %}
6+
{% include 'components/_dltable.html' %}
77
{% else %}
88
<div class="alert alert-warning">
99
Sorry, but no files to download are available for this release. Most likely this is too old release and we didn't find it in our archives.

pmaweb/templates/components/_dltable.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
</thead>
1010
<tbody>
1111
{% for file in download_list %}
12-
{% include 'components\_dlrow.html' %}
12+
{% include 'components/_dlrow.html' %}
1313
{% endfor %}
1414
{% if download_item %}
15-
{% include 'components\_dlrow.html' with file=download_item%}
15+
{% include 'components/_dlrow.html' with file=download_item%}
1616
{% endif %}
1717
</tbody>
1818
</table>

pmaweb/templates/components/_littleboxes.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{% with latest_release as release %}
2-
{% include "components\_dlbox.html" %}
2+
{% include "components/_dlbox.html" %}
33
{% endwith %}
44

55
{% if beta_release %}
66
{% with beta_release as release %}
7-
{% include "components\_dlbox.html" %}
7+
{% include "components/_dlbox.html" %}
88
{% endwith %}
99
{% endif %}
1010

pmaweb/templates/components/_release.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
<p>Released {{release.date|date:"Y-m-d"}}, see <a href="{{ release.get_absolute_url }}">release notes</a> for details.</p>
55
{% endif %}
66

7-
{% include "components\_dllist.html" %}
7+
{% include "components/_dllist.html" %}

pmaweb/templates/components/_sponsorship_conditions.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ <h3 id="process">Sponsorship process</h3>
5959

6060
<h3>New sponsors</h3>
6161

62-
{% include "components\_conservancy.html" %}
62+
{% include "components/_conservancy.html" %}
6363

6464
<p>
6565
If you use phpMyAdmin or offer it to your customers, please consider
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{% with latest=1 download_list=latest_release.get_downloads %}
2-
{% include 'components\_dltable.html' %}
2+
{% include 'components/_dltable.html' %}
33
{% endwith %}

pmaweb/templates/develop.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ <h2>Developing phpMyAdmin</h2>
1515
</p>
1616

1717
<h3>Source Code Repository</h3>
18-
{% include "components\_gitdl.html" %}
18+
{% include "components/_gitdl.html" %}
1919

2020
<p>
2121
To checkout the code you can use one of the following examples:

0 commit comments

Comments
 (0)