Sha256: 33a21a6ca6407856f8008dfaddc7eb12413daa83b979d3b2ed09e42930f8ae9c
Contents?: true
Size: 1.32 KB
Versions: 1
Compression:
Stored size: 1.32 KB
Contents
<div id="record"> <table class="records"> <thead> <tr> <th> <%= resource_class.human_attribute_name :description %> </th> </tr> </thead> <tbody> <tr> <td> <%= resource.description %> </td> </tr> </tbody> </table> <table class="records"> <thead> <tr> <th> <%= resource_class.human_attribute_name :bank %> </th> <th> <%= resource_class.human_attribute_name :agency %> </th> <th> <%= resource_class.human_attribute_name :account_number %> </th> </tr> </thead> <tbody> <tr> <td> <%= resource.bank %> </td> <td> <%= resource.agency %> </td> <td> <%= resource.account_number %> </td> </tr> </tbody> </table> <table class="records"> <thead> <tr> <th> <%= resource_class.human_attribute_name :kind %> </th> <th> <%= resource_class.human_attribute_name :status %> </th> </tr> </thead> <tbody> <tr> <td> <%= resource.kind_humanize %> </td> <td> <%= resource.status_humanize %> </td> </tr> </tbody> </table> </div>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
unico-training-7.8.0 | app/views/bank_accounts/_show.html.erb |