saguaros Thank you for your help, I just managed to do what I was thinking.
So, in /template/html/com_content/article/default.php I made this change:
<?php if($extra1) :?>
<div class="review-item other">
<span class="fa fa-check" aria-hidden="true" style="color:green"></span><?php echo JText::_('TPL_EXTRA1'); ?>
</div>
<?php endif; ?>
And in /template/etc/extrafields/review.xml this extra field I made:
<field name="extra" type="list" label="TPL_EXTRA1" description="TPL_EXTRA1">
<option value="0">JNO</option>
<option value="TPL_EXTRA1">JYES</option>
</field>
TPL_EXTRA1 I can change with language overrides.