21 lines
456 B
Plaintext
21 lines
456 B
Plaintext
extends layout
|
|
|
|
block content
|
|
h1= title
|
|
h2 Liste des blocs #{page} à #{max}
|
|
table(class="table")
|
|
thead
|
|
tr
|
|
th(scope="col") N° bloc
|
|
th(scope="col") Montant total du compte
|
|
th(scope="col") Nombre de transactions du compte
|
|
tbody
|
|
while page < max
|
|
tr
|
|
th(scope="row")
|
|
a(href="/block/"+page)= page
|
|
td= amounts[page]
|
|
td= trans[page]
|
|
- page++
|
|
|