github.com/piotrnar/gocoin@v0.0.0-20240512203912-faa0448c5e96/client/www/templates/fees_chart.html (about) 1 <!-- included from blocks.html and home.html --> 2 3 <div id="light" class="white_content" style="height:auto"> 4 <div id="block_fee_stats" width="100%" style="text-align:center"> 5 6 <div style="margin-top:10px"> 7 Block number <b id="stat_height"></b> / 8 <b id="stat_block_size"></b> bytes 9 - 10 Max <b id="stat_max_fee"></b> SPB 11 • 12 Avg <b id="stat_avg_fee"></b> SPB 13 • 14 Min <b id="stat_min_fee"></b> SPB 15 • 16 Mined by <b id="stat_mined_by"></b> 17 <span style="float:right"><img title="Close this popup" src="webui/close.png" class="hand" onclick="closepopup()"> </span> 18 <br><br> 19 </div> 20 21 <div id="stat_error" class="err" style="display:none">Something went wrong (<span id="error_info"></span>)</div> 22 <div id="block_fees" style="height:370px;margin:5px"></div> 23 <br> 24 <div width="100%" style="margin-bottom:10px;text-align:right"> 25 <span class="hand" onclick="block_fees_points.click()"> 26 <input type="checkbox" id="block_fees_points" onchange="show_fees_clicked()" onclick="event.stopPropagation()"> Show points 27 </span> 28 • 29 Limit range to 30 <span class="hand" onclick="block_fees_full.click()"> 31 <input type="radio" name="block_fees_range" id="block_fees_full" onchange="show_fees_clicked()" onclick="event.stopPropagation()">100% 32 </span> 33 <span class="hand" onclick="block_fees_25.click()"> 34 <input type="radio" name="block_fees_range" id="block_fees_25" onchange="show_fees_clicked()" onclick="event.stopPropagation()" checked>25% 35 </span> 36 <span class="hand" onclick="block_fees_5.click()"> 37 <input type="radio" name="block_fees_range" id="block_fees_5" onchange="show_fees_clicked()" onclick="event.stopPropagation()">5% 38 </span> 39 • 40 <span class="hand" onclick="block_fees_raw.click()"> 41 <input type="radio" name="block_fees_mode" id="block_fees_raw" value="raw" onchange="show_fees_clicked()" onclick="event.stopPropagation()" checked> Show as is 42 </span> 43 • 44 <span class="hand" onclick="block_fees_gru.click()"> 45 <input type="radio" name="block_fees_mode" id="block_fees_gru" value="gru" onchange="show_fees_clicked()" onclick="event.stopPropagation()"> Try to group 46 </span> 47 • 48 <span class="hand" onclick="block_fees_spb.click()"> 49 <input type="radio" name="block_fees_mode" id="block_fees_spb" value="spb" onchange="show_fees_clicked()" onclick="event.stopPropagation()"> Sort by SPB 50 </span> 51 </div> 52 53 </div> 54 </div><div id="fade" class="black_overlay"></div>