Skip to content

Commit d53b860

Browse files
committed
Fix broken template include paths
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
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:

pmaweb/templates/donate.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
<h2>Donations</h2>
1111

12-
{% include "components\_conservancy.html" %}
12+
{% include "components/_conservancy.html" %}
1313

1414
<p>
1515
As a free software project, phpMyAdmin has almost no revenues itself. On the
@@ -92,7 +92,7 @@ <h2 id="sponsors">Sponsorship</h2>
9292
receive various benefits depending on sponsorship level.
9393
</p>
9494

95-
{% include 'components\_sponsorship_conditions.html' %}
95+
{% include 'components/_sponsorship_conditions.html' %}
9696

9797
</div>
9898
</div>

pmaweb/templates/downloads.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,17 +36,17 @@ <h2>Download</h2>
3636
and MySQL versions.
3737
</p>
3838

39-
{% include "components\_verify.html" %}
39+
{% include "components/_verify.html" %}
4040

4141
{% for release in releases %}
4242
<h2 id="release_{{ release.version }}">phpMyAdmin {{ release.version }}</h2>
43-
{% include "components\_release.html" %}
43+
{% include "components/_release.html" %}
4444
{% endfor %}
4545

4646
{% if beta_release %}
4747
{% with beta_release as release %}
4848
<h2>Testing: phpMyAdmin {{ release.version }}</h2>
49-
{% include "components\_release.html" %}
49+
{% include "components/_release.html" %}
5050
{% endwith %}
5151
{% endif %}
5252

@@ -56,7 +56,7 @@ <h2 id="features">Features</h2>
5656
</p>
5757

5858
<h2 id="devel">Development Versions</h2>
59-
{% include "components\_gitdl.html" %}
59+
{% include "components/_gitdl.html" %}
6060

6161
<p>
6262
More information about using Git is available on <a
@@ -65,14 +65,14 @@ <h2 id="devel">Development Versions</h2>
6565

6666
{% for release in all_snapshots %}
6767
<h3 id="snapshot_{{ release.version }}">phpMyAdmin {{ release.version }}</h3>
68-
{% include "components\_release.html" %}
68+
{% include "components/_release.html" %}
6969
{% endfor %}
7070

7171
<h2 id="stable">Latest Stable Version</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

7777
<p>
7878
We also publish a variety of formats intended for parsing by scripts to download the latest version.

pmaweb/templates/files/release_detail.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ <h2>phpMyAdmin {{ release.version }}</h2>
88

99
{{ release.release_notes }}
1010

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

13-
{% include "components\_verify.html" %}
13+
{% include "components/_verify.html" %}
1414

1515
{% endblock %}

pmaweb/templates/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
<div class="hero">
3838
<div class="content">
39-
{% include 'components\_sponsors.html' %}
39+
{% include 'components/_sponsors.html' %}
4040
</div>
4141
</div>
4242

pmaweb/templates/security/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ <h2>Security</h2>
1616
for more details about our security policy.
1717
</p>
1818

19-
{% include "components\_security_contact.html" %}
19+
{% include "components/_security_contact.html" %}
2020

2121
<p>
2222
Please note that any support requests on this address will not be answered;

pmaweb/templates/sponsors-subscribe.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@ <h2>Sponsorship subscription</h2>
3030

3131
<h2 id="conditions">Sponsorship conditions</h2>
3232

33-
{% include 'components\_sponsorship_conditions.html' %}
33+
{% include 'components/_sponsorship_conditions.html' %}
3434
</div>
3535
{% endblock %}

pmaweb/templates/sponsors.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ <h3>Silver sponsors</h3>
112112

113113
<h2 id="conditions">Becoming a sponsor</h2>
114114

115-
{% include 'components\_sponsorship_conditions.html' %}
115+
{% include 'components/_sponsorship_conditions.html' %}
116116

117117
<h2 id="partners">Technology partners</h2>
118118

pmaweb/templates/themes.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ <h2>Themes</h2>
2424
href="{% url 'try' %}">demo server</a>.
2525
</p>
2626

27-
{% include "components\_verify.html" %}
27+
{% include "components/_verify.html" %}
2828

2929
<h2>Submit Theme</h2>
3030
<p>
@@ -65,7 +65,7 @@ <h2 class="card-title">{{ theme }}</h2>
6565
</a>
6666
</div>
6767
</div>
68-
{% include 'components\_dltable.html' with download_item=theme %}
68+
{% include 'components/_dltable.html' with download_item=theme %}
6969
</div>
7070
{% endfor %}
7171
</div>

pmaweb/templates/try.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,13 @@ <h3>Available demo versions</h3>
5454
<h4>Releases and maintenance branches</h4>
5555

5656
{% with demo_stable as demos %}
57-
{% include 'components\_list-demos.html' %}
57+
{% include 'components/_list-demos.html' %}
5858
{% endwith %}
5959

6060
<h4>Development version (future {{ demo_devel.0.master_version }})</h4>
6161

6262
{% with demo_devel as demos %}
63-
{% include 'components\_list-demos.html' %}
63+
{% include 'components/_list-demos.html' %}
6464
{% endwith %}
6565

6666

0 commit comments

Comments
 (0)