Skip to content

Commit 44bd822

Browse files
Merge branch 'communitypanel' of https://github.com/andoriyaprashant/django-debug-toolbar into communitypanel
2 parents 12efb52 + c4d7c9c commit 44bd822

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

debug_toolbar/panels/community.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
from debug_toolbar.panels import Panel
21
from django.utils.translation import gettext_lazy as _
32

3+
from debug_toolbar.panels import Panel
4+
5+
46
class CommunityPanel(Panel):
57
"""
68
A panel that provides links to the Django Debug Toolbar community.

debug_toolbar/templates/debug_toolbar/panels/community.html

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,43 +4,43 @@
44
<h2 style="color: #2c3e50; border-bottom: 2px solid #3498db; padding-bottom: 10px; font-size: 22px;">
55
{% trans "Community & Contribution" %}
66
</h2>
7-
7+
88
<p style="font-size: 18px; color: #555;">
99
{% trans "Want to contribute to Django Debug Toolbar? Get involved in our community!" %}
1010
</p>
11-
11+
1212
<div style="margin-top: 15px;">
1313
<ul style="list-style-type: disc; padding-left: 20px;">
1414
<li>
15-
<a href="https://github.com/django-commons/django-debug-toolbar/discussions" target="_blank"
15+
<a href="https://github.com/django-commons/django-debug-toolbar/discussions" target="_blank"
1616
style="text-decoration: none; color: #007bff; font-weight: bold; font-size: 16px;">
1717
{% trans "Join Discussions" %}
1818
</a>
1919
</li>
2020
<li>
21-
<a href="https://github.com/django-commons/django-debug-toolbar/issues" target="_blank"
21+
<a href="https://github.com/django-commons/django-debug-toolbar/issues" target="_blank"
2222
style="text-decoration: none; color: #007bff; font-weight: bold; font-size: 16px;">
2323
{% trans "View Issues" %}
2424
</a>
2525
</li>
2626
<li>
27-
<a href="https://django-debug-toolbar.readthedocs.io/en/latest/contributing.html" target="_blank"
27+
<a href="https://django-debug-toolbar.readthedocs.io/en/latest/contributing.html" target="_blank"
2828
style="text-decoration: none; color: #007bff; font-weight: bold; font-size: 16px;">
2929
{% trans "Contribution Guide" %}
3030
</a>
3131
</li>
3232
</ul>
3333
</div>
34-
34+
3535
<h3 style="color: #2c3e50; margin-top: 20px; font-size: 20px;">
3636
{% trans "Django Debug Toolbar Documentation" %}
3737
</h3>
3838
<p style="font-size: 16px; color: #666;">
3939
{% trans "Explore the official documentation to learn more about Django Debug Toolbar." %}
4040
</p>
41-
<br>
42-
<a href="https://django-debug-toolbar.readthedocs.io/en/latest/" target="_blank"
43-
style="text-decoration: none; background-color: #2980b9; color: white; padding: 10px 18px;
41+
<br>
42+
<a href="https://django-debug-toolbar.readthedocs.io/en/latest/" target="_blank"
43+
style="text-decoration: none; background-color: #2980b9; color: white; padding: 10px 18px;
4444
border-radius: 5px; font-weight: bold; font-size: 16px; display: inline-block;">
4545
{% trans "Read Documentation" %}
4646
</a>

0 commit comments

Comments
 (0)