Merge pull request #381 from presidentbeef/fix_bonus_html

Add missing < on bonus work info
This commit is contained in:
Ken Johnson
2020-04-05 13:12:03 -04:00
committed by GitHub
+9 -9
View File
@@ -12,26 +12,26 @@
<table class="table table-bordered table-striped"> <table class="table table-bordered table-striped">
<thead> <thead>
<tr> <tr>
<th style="width:16%">Full Name</th> <th style="width:16%">Full Name</th>
<th style="width:16%">Income</th> <th style="width:16%">Income</th>
<th style="width:16%">Bonus/th> <th style="width:16%">Bonus</th>
<th style="width:16%">Years w/ MetaCorp</th> <th style="width:16%">Years w/ MetaCorp</th>
<th style="width:16%">SSN</th> <th style="width:16%">SSN</th>
<th style="width:16%">DoB</th> <th style="width:16%">DoB</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<tr> <tr>
<td><%= "#{@user.first_name} #{@user.last_name}" %></td> <td><%= "#{@user.first_name} #{@user.last_name}" %></td>
<td><%= @user.work_info.income %></td> <td><%= @user.work_info.income %></td>
<td><%= @user.work_info.bonuses %></td> <td><%= @user.work_info.bonuses %></td>
<td><%= @user.work_info.years_worked %></td> <td><%= @user.work_info.years_worked %></td>
<td class="ssn"><%= @user.work_info.SSN %></td> <td class="ssn"><%= @user.work_info.SSN %></td>
<!-- Begin Secure Version>--> <!-- Begin Secure Version>-->
<!--<td class="ssn"><%#= @user.work_info.last_four %></td>--> <!--<td class="ssn"><%#= @user.work_info.last_four %></td>-->
<!-- End Secure Version --> <!-- End Secure Version -->
<td><%= @user.work_info.DoB %></td> <td><%= @user.work_info.DoB %></td>
</tr> </tr>
</tbody> </tbody>