forked from LaunchCode-Education-Archived/TechJobsOO
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Completed TODOs LaunchCode-Education-Archived#1, 2.1, 2.2
- Loading branch information
1 parent
a75f584
commit e5b1597
Showing
3 changed files
with
42 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,31 @@ | ||
@{ | ||
// TODO #2.1- declare the ViewModel (outside of this @{ } block) | ||
} | ||
@using TechJobs.ViewModels | ||
@model NewJobViewModel | ||
|
||
<table class="job-listing"> | ||
@{ | ||
// TODO #2.2 - display the job fields, one per row (outside of this @{ } block) | ||
} | ||
</table> | ||
<table class="job-listing"> | ||
@{ | ||
// TODO #2.2 - display the job fields, one per row (outside of this @{ } block) | ||
} | ||
<tr> | ||
<td>Name</td> | ||
<td>@Model.Name</td> | ||
</tr> | ||
<tr> | ||
<td>Employer</td> | ||
<td>@Model.Employer</td> | ||
</tr> | ||
<tr> | ||
<td>Location</td> | ||
<td>@Model.Location</td> | ||
</tr> | ||
<tr> | ||
<td>Skill</td> | ||
<td>@Model.CoreCompetency</td> | ||
</tr> | ||
<tr> | ||
<td>Position Type</td> | ||
<td>@Model.PositionType</td> | ||
</tr> | ||
</table> |