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

Plagiarism checks: Add direct link to plagiarism detection case view #9747

Open
wants to merge 20 commits into
base: develop
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
9192981
Development: add direct link to plagiarism detection case view from c…
AjayvirS Nov 9, 2024
6223d6e
Development: add test for plagiarism detection navigation
AjayvirS Nov 11, 2024
2df2fb0
Merge branch 'develop' into chore/general/5974-link-plagiarism-detect…
AjayvirS Nov 11, 2024
9574d76
remove redundant comment
AjayvirS Nov 14, 2024
aeae957
add coderabbit quality suggestions
AjayvirS Nov 14, 2024
f8695ef
Merge branch 'develop' into chore/general/5974-link-plagiarism-detect…
AjayvirS Nov 14, 2024
6d411d7
Merge branch 'develop' into chore/general/5974-link-plagiarism-detect…
AjayvirS Nov 19, 2024
b0fab14
add code reviewed changes
AjayvirS Nov 19, 2024
dc6ca72
Merge remote-tracking branch 'origin/chore/general/5974-link-plagiari…
AjayvirS Nov 19, 2024
0104895
Merge branch 'develop' into chore/general/5974-link-plagiarism-detect…
AjayvirS Nov 22, 2024
15c04c0
Merge branch 'develop' into chore/general/5974-link-plagiarism-detect…
sachmii Dec 2, 2024
a608be0
adapt changes for updated requirement
AjayvirS Dec 3, 2024
6a852e8
Merge branch 'develop' into chore/general/5974-link-plagiarism-detect…
AjayvirS Dec 10, 2024
8d867d5
simon changes
AjayvirS Dec 10, 2024
d2762cb
Merge remote-tracking branch 'origin/chore/general/5974-link-plagiari…
AjayvirS Dec 10, 2024
5d93346
simon changes
AjayvirS Dec 11, 2024
6ce4eec
prettier
AjayvirS Dec 11, 2024
823c6ff
Merge branch 'develop' into chore/general/5974-link-plagiarism-detect…
sachmii Dec 11, 2024
9b21bc9
coderabbit changes
AjayvirS Dec 11, 2024
2430998
coderabbit changes
AjayvirS Dec 11, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,14 @@ <h5 class="mb-0">
<fa-icon [icon]="getIcon(exercise.type)" />
}
{{ exercise.title }}
<small
><a
<small>
<a
id="plagiarism-detection-link-{{ exercise.id }}"
[routerLink]="['/course-management', courseId, getExerciseUrlSegment(exercise.type), exercise.id, 'plagiarism']"
jhiTranslate="artemisApp.plagiarism.plagiarismCases.viewComparisons"
></a
></small>
>
</a>
</small>
</h5>
</div>
<div class="col-3">
Expand Down Expand Up @@ -58,11 +59,13 @@ <h5 class="mb-0">
<div class="card-body">
@for (plagiarismCase of groupedPlagiarismCases[exercise!.id!]; track plagiarismCase; let j = $index) {
<div class="row mb-3">
<div class="col-1 text-center">
<a [routerLink]="['/course-management', courseId, 'plagiarism-cases', plagiarismCase.id]">
{{ plagiarismCase.student?.name }} ({{ plagiarismCase.student?.login }})
</a>
</div>
@if (plagiarismCase.student) {
<div class="col-1 text-center">
<a [routerLink]="['/course-management', courseId, 'plagiarism-cases', plagiarismCase.id]">
{{ plagiarismCase.student?.name }} ({{ plagiarismCase.student?.login }})
AjayvirS marked this conversation as resolved.
Show resolved Hide resolved
</a>
</div>
}
@if (plagiarismCase.plagiarismSubmissions) {
<div class="col-2 text-center">
<span>
Expand Down