Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement footer links and revised copyright #2063

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Target LinkedIn to avoid footer confusion
  • Loading branch information
VirginiaDooley committed Oct 22, 2024
commit d5d749a31fd0112b1ab61ef4db914448c28b3451
4 changes: 2 additions & 2 deletions wcivf/apps/people/tests/test_person_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,7 @@ def test_no_linkedin(self):
)
response = self.client.get(self.person_url, follow=True)
self.assertEqual(response.template_name, ["people/person_detail.html"])
self.assertNotContains(response, "LinkedIn")
assert b"<dt>LinkedIn</dt>" not in response.content

def test_linkedin(self):
self.person.linkedin_url = "https://www.linkedin.com/in/yo"
Expand All @@ -580,7 +580,7 @@ def test_linkedin(self):
)
response = self.client.get(self.person_url, follow=True)
self.assertEqual(response.template_name, ["people/person_detail.html"])
self.assertContains(response, "LinkedIn")
assert b"<dt>LinkedIn</dt>" in response.content

def test_instagram(self):
self.person.instagram_url = "https://www.instagram.com/yo"
Expand Down