Skip to content
Snippets Groups Projects
Verified Commit 987f9eab authored by Kevin Morris's avatar Kevin Morris
Browse files

fix: link to user account in last votes by tu listing


Signed-off-by: Kevin Morris's avatarKevin Morris <kevr@0cost.org>
parent ab147992
No related branches found
No related tags found
No related merge requests found
Pipeline #15515 passed
......@@ -18,7 +18,11 @@
{% else %}
{% for vote in votes %}
<tr>
<td>{{ vote.Username }}</td>
<td>
<a href="/account/{{ vote.Username }}">
{{ vote.Username }}
</a>
</td>
<td>
<a href="/tu/{{ vote.LastVote }}">
{{ vote.LastVote }}
......
......@@ -251,6 +251,7 @@ def test_tu_index(client, tu_user):
# Check to see the rows match up to our user and related vote.
username, vote_id = rows[0]
username = username.xpath("./a")[0]
vote_id = vote_id.xpath("./a")[0]
assert username.text.strip() == tu_user.Username
assert int(vote_id.text.strip()) == vote_records[1].ID
......@@ -464,6 +465,7 @@ def test_tu_index_last_votes(client, tu_user, user):
last_vote = rows[0]
user, vote_id = last_vote.xpath("./td")
user = user.xpath("./a")[0]
vote_id = vote_id.xpath("./a")[0]
assert user.text.strip() == tu_user.Username
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment