Hero, please consider making this change in future versions.
When looking at the job list in the back end admin area, it does not show #views. So this adds it.
Open administrator/components/com_jajobboard/views/jajobs/tmpl/default.php.
You will see a section of TH. Add this code in the order you want the views column shown. I put it immediately after applications:
<th width="20">
<?php echo JText::_('VIEWS'); ?>
</th>
Next, add the following in the same order in the TD section. If you want to put it directly after the applications column like I did, find the following code:
<td align="center"><?php echo JAJobBoardModelJAJobs::getNumApplications($item->id); ?></td>
Right after this line, add the following code:
<td align="center"><?php echo $item->views; ?></td>
All done!