diff --git a/scipost_django/scipost/templates/scipost/vet_authorship_claims.html b/scipost_django/scipost/templates/scipost/vet_authorship_claims.html index ce703025da4898995fc3fbbd82aa9244b56d8c8b..401a6fb2ce2674ec2a4b46ee3f3b7a56b23200f3 100644 --- a/scipost_django/scipost/templates/scipost/vet_authorship_claims.html +++ b/scipost_django/scipost/templates/scipost/vet_authorship_claims.html @@ -29,24 +29,24 @@ <div class="card "> {% if claim.publication %} <div class="card-header"> - <h4>Contributor {{ claim.claimant.user.first_name }} {{ claim.claimant.user.last_name }} claims to be an author of Publication:</h4> + <h4>Contributor <a href="{{ claim.claimant.profile.get_absolute_url }}">{{ claim.claimant.profile.full_name }}</a> claims to be an author of Publication:</h4> </div> {% include 'journals/_publication_card_content.html' with publication=claim.publication %} {% elif claim.submission %} <div class="card-header"> - <h4>Contributor {{ claim.claimant.user.first_name }} {{ claim.claimant.user.last_name }} claims to be an author of Submission:</h4> + <h4>Contributor <a href="{{ claim.claimant.profile.get_absolute_url }}">{{ claim.claimant.profile.full_name }}</a> claims to be an author of Submission:</h4> </div> <div class="card-body"> {% include 'submissions/_submission_card_content.html' with submission=claim.submission %} </div> {% elif claim.commentary %} <div class="card-header"> - <h4>Contributor {{ claim.claimant.user.first_name }} {{ claim.claimant.user.last_name }} claims to be an author of Commentary:</h4> + <h4>Contributor <a href="{{ claim.claimant.profile.get_absolute_url }}">{{ claim.claimant.profile.full_name }}</a> claims to be an author of Commentary:</h4> </div> {% include 'commentaries/_commentary_card_content.html' with commentary=claim.commentary %} {% elif claim.thesislink %} <div class="card-header"> - <h4>Contributor {{ claim.claimant.user.first_name }} {{ claim.claimant.user.last_name }} claims to be an author of Thesis:</h4> + <h4>Contributor <a href="{{ claim.claimant.profile.get_absolute_url }}">{{ claim.claimant.profile.full_name }}</a> claims to be an author of Thesis:</h4> </div> {% include 'theses/_thesislink_card_content.html' with thesislink=claim.thesislink %} {% endif %}