13 lines
520 B
HTML
13 lines
520 B
HTML
<div class="sidebar">
|
|
<div class="container std">
|
|
<div class="text-center" style="padding-bottom: 2em; padding-top: 1em;">
|
|
<h1><a href="/"><img height="50px" src="static/images/logo.png"></a></h1>
|
|
<hr id="header">
|
|
</div>
|
|
{% for x in data["buttons"] %}
|
|
<div style="padding-top: 5px;">
|
|
<button class="form-control btn btn-outline-light" onclick="makeCall('{{x}}')">{{data['buttons'][x]}}</button>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div> |