Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
H
Hire-Guru
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Vigneswaran Shanmugam
Hire-Guru
Commits
71897859
Commit
71897859
authored
May 18, 2026
by
Aravind RK
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Enable to view the pm and hr in the interview details page
parent
566dca04
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
145 additions
and
1 deletion
+145
-1
Frontend/src/app/pages/Interviewer/group-interview/group-interview.html
...pp/pages/Interviewer/group-interview/group-interview.html
+36
-0
Frontend/src/app/pages/ProjectManager/group-interview/group-interview.html
...pages/ProjectManager/group-interview/group-interview.html
+36
-0
Frontend/src/app/pages/admin/group-interview/group-interview.html
.../src/app/pages/admin/group-interview/group-interview.html
+36
-0
Frontend/src/app/pages/hr/group-interview/group-interview.html
...end/src/app/pages/hr/group-interview/group-interview.html
+36
-0
Frontend/src/app/pages/hr/individual-interview/individual-interview.ts
...app/pages/hr/individual-interview/individual-interview.ts
+1
-1
No files found.
Frontend/src/app/pages/Interviewer/group-interview/group-interview.html
View file @
71897859
...
@@ -201,6 +201,42 @@
...
@@ -201,6 +201,42 @@
<span
class=
"detail-label"
>
Interview Date
</span>
<span
class=
"detail-label"
>
Interview Date
</span>
<span
class=
"detail-value"
>
{{ selectedGroup().dateOfInterview | date:'mediumDate' }}
</span>
<span
class=
"detail-value"
>
{{ selectedGroup().dateOfInterview | date:'mediumDate' }}
</span>
</div>
</div>
<div
class=
"detail-item"
>
<span
class=
"detail-label"
>
Interviewer(s)
</span>
<span
class=
"detail-value"
>
@if (selectedGroup().assignedInterviewers?.length) {
@for (i of selectedGroup().assignedInterviewers; track i._id; let last = $last) {
{{ i.name }}{{ !last ? ', ' : '' }}
}
} @else {
—
}
</span>
</div>
<div
class=
"detail-item"
>
<span
class=
"detail-label"
>
HR(s)
</span>
<span
class=
"detail-value"
>
@if (selectedGroup().assignedHRs?.length) {
@for (h of selectedGroup().assignedHRs; track h._id; let last = $last) {
{{ h.name }}{{ !last ? ', ' : '' }}
}
} @else {
—
}
</span>
</div>
<div
class=
"detail-item"
>
<span
class=
"detail-label"
>
Project Manager(s)
</span>
<span
class=
"detail-value"
>
@if (selectedGroup().assignedPMs?.length) {
@for (p of selectedGroup().assignedPMs; track p._id; let last = $last) {
{{ p.name }}{{ !last ? ', ' : '' }}
}
} @else {
—
}
</span>
</div>
</div>
</div>
</div>
</div>
...
...
Frontend/src/app/pages/ProjectManager/group-interview/group-interview.html
View file @
71897859
...
@@ -201,6 +201,42 @@
...
@@ -201,6 +201,42 @@
<span
class=
"detail-label"
>
Interview Date
</span>
<span
class=
"detail-label"
>
Interview Date
</span>
<span
class=
"detail-value"
>
{{ selectedGroup().dateOfInterview | date:'mediumDate' }}
</span>
<span
class=
"detail-value"
>
{{ selectedGroup().dateOfInterview | date:'mediumDate' }}
</span>
</div>
</div>
<div
class=
"detail-item"
>
<span
class=
"detail-label"
>
Interviewer(s)
</span>
<span
class=
"detail-value"
>
@if (selectedGroup().assignedInterviewers?.length) {
@for (i of selectedGroup().assignedInterviewers; track i._id; let last = $last) {
{{ i.name }}{{ !last ? ', ' : '' }}
}
} @else {
—
}
</span>
</div>
<div
class=
"detail-item"
>
<span
class=
"detail-label"
>
HR(s)
</span>
<span
class=
"detail-value"
>
@if (selectedGroup().assignedHRs?.length) {
@for (h of selectedGroup().assignedHRs; track h._id; let last = $last) {
{{ h.name }}{{ !last ? ', ' : '' }}
}
} @else {
—
}
</span>
</div>
<div
class=
"detail-item"
>
<span
class=
"detail-label"
>
Project Manager(s)
</span>
<span
class=
"detail-value"
>
@if (selectedGroup().assignedPMs?.length) {
@for (p of selectedGroup().assignedPMs; track p._id; let last = $last) {
{{ p.name }}{{ !last ? ', ' : '' }}
}
} @else {
—
}
</span>
</div>
</div>
</div>
</div>
</div>
...
...
Frontend/src/app/pages/admin/group-interview/group-interview.html
View file @
71897859
...
@@ -441,6 +441,42 @@
...
@@ -441,6 +441,42 @@
<span
class=
"detail-label"
>
Interview Date
</span>
<span
class=
"detail-label"
>
Interview Date
</span>
<span
class=
"detail-value"
>
{{ selectedGroup().dateOfInterview | date:'mediumDate' }}
</span>
<span
class=
"detail-value"
>
{{ selectedGroup().dateOfInterview | date:'mediumDate' }}
</span>
</div>
</div>
<div
class=
"detail-item"
>
<span
class=
"detail-label"
>
Interviewer(s)
</span>
<span
class=
"detail-value"
>
@if (selectedGroup().assignedInterviewers?.length) {
@for (i of selectedGroup().assignedInterviewers; track i._id; let last = $last) {
{{ i.name }}{{ !last ? ', ' : '' }}
}
} @else {
—
}
</span>
</div>
<div
class=
"detail-item"
>
<span
class=
"detail-label"
>
HR(s)
</span>
<span
class=
"detail-value"
>
@if (selectedGroup().assignedHRs?.length) {
@for (h of selectedGroup().assignedHRs; track h._id; let last = $last) {
{{ h.name }}{{ !last ? ', ' : '' }}
}
} @else {
—
}
</span>
</div>
<div
class=
"detail-item"
>
<span
class=
"detail-label"
>
Project Manager(s)
</span>
<span
class=
"detail-value"
>
@if (selectedGroup().assignedPMs?.length) {
@for (p of selectedGroup().assignedPMs; track p._id; let last = $last) {
{{ p.name }}{{ !last ? ', ' : '' }}
}
} @else {
—
}
</span>
</div>
</div>
</div>
</div>
</div>
...
...
Frontend/src/app/pages/hr/group-interview/group-interview.html
View file @
71897859
...
@@ -442,6 +442,42 @@
...
@@ -442,6 +442,42 @@
<span
class=
"detail-label"
>
Interview Date
</span>
<span
class=
"detail-label"
>
Interview Date
</span>
<span
class=
"detail-value"
>
{{ selectedGroup().dateOfInterview | date:'mediumDate' }}
</span>
<span
class=
"detail-value"
>
{{ selectedGroup().dateOfInterview | date:'mediumDate' }}
</span>
</div>
</div>
<div
class=
"detail-item"
>
<span
class=
"detail-label"
>
Interviewer(s)
</span>
<span
class=
"detail-value"
>
@if (selectedGroup().assignedInterviewers?.length) {
@for (i of selectedGroup().assignedInterviewers; track i._id; let last = $last) {
{{ i.name }}{{ !last ? ', ' : '' }}
}
} @else {
—
}
</span>
</div>
<div
class=
"detail-item"
>
<span
class=
"detail-label"
>
HR(s)
</span>
<span
class=
"detail-value"
>
@if (selectedGroup().assignedHRs?.length) {
@for (h of selectedGroup().assignedHRs; track h._id; let last = $last) {
{{ h.name }}{{ !last ? ', ' : '' }}
}
} @else {
—
}
</span>
</div>
<div
class=
"detail-item"
>
<span
class=
"detail-label"
>
Project Manager(s)
</span>
<span
class=
"detail-value"
>
@if (selectedGroup().assignedPMs?.length) {
@for (p of selectedGroup().assignedPMs; track p._id; let last = $last) {
{{ p.name }}{{ !last ? ', ' : '' }}
}
} @else {
—
}
</span>
</div>
</div>
</div>
</div>
</div>
...
...
Frontend/src/app/pages/hr/individual-interview/individual-interview.ts
View file @
71897859
...
@@ -90,7 +90,7 @@ export class HRIndividualInterviewComponent implements OnInit {
...
@@ -90,7 +90,7 @@ export class HRIndividualInterviewComponent implements OnInit {
this
.
hrs
.
set
(
staff
.
filter
((
s
:
any
)
=>
s
.
role
===
'
hr
'
));
this
.
hrs
.
set
(
staff
.
filter
((
s
:
any
)
=>
s
.
role
===
'
hr
'
));
}
}
});
});
this
.
quizService
.
get
Admin
Quizzes
().
subscribe
({
this
.
quizService
.
get
HR
Quizzes
().
subscribe
({
next
:
(
res
)
=>
this
.
quizzes
.
set
(
res
.
quizzes
||
[])
next
:
(
res
)
=>
this
.
quizzes
.
set
(
res
.
quizzes
||
[])
});
});
this
.
newInterview
=
{
this
.
newInterview
=
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment