Skip to content

Commit e25cb36

Browse files
committed
docs(next): add Framalibre to alternative resources
Adds https://framalibre.org/ to the resources listed under "Discover alternatives" on the What's next? page, as requested. Closes #618
1 parent 8180124 commit e25cb36

2 files changed

Lines changed: 11 additions & 0 deletions

File tree

exodus/web/templates/base/next.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ <h4 class="mt-2">{% trans "Discover alternatives" %}</h4>
9292
<ul>
9393
<li><a target='_blank' rel='noreferrer' href='https://prism-break.org/en/categories/android/'>Prism Break</a></li>
9494
<li><a target='_blank' rel='noreferrer' href='https://ssd.eff.org/'>Surveillance Self-Defense by EFF</a></li>
95+
<li><a target='_blank' rel='noreferrer' href='https://framalibre.org/'>Framalibre</a></li>
9596
</ul>
9697
{% endblocktrans %}
9798
</p>

exodus/web/tests.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
from django.test import TestCase
2+
3+
4+
class NextPageTests(TestCase):
5+
6+
def test_next_page_lists_framalibre_among_alternatives(self):
7+
response = self.client.get('/en/info/next/')
8+
9+
self.assertEqual(response.status_code, 200)
10+
self.assertContains(response, 'https://framalibre.org/')

0 commit comments

Comments
 (0)