Last active
September 7, 2018 13:17
-
-
Save 9876691/c502f67844b68cb5da26e80a7660d493 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| class Bitcoins::IndexPage < MainLayout | |
| needs addresses : Array(Tuple(String, String, String)) | |
| def content | |
| h1 "Your Bitcoin Addresses" | |
| table class: "table" do | |
| thead do | |
| tr do | |
| th "Label" | |
| th "Public Address" | |
| th "Balance" | |
| end | |
| end | |
| tbody do | |
| @addresses.each do |label, public_key, balance| | |
| tr do | |
| td label | |
| td public_key | |
| td balance | |
| end | |
| end | |
| end | |
| end | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment