decred.org/dcrdex@v1.0.3/client/webserver/site/src/html/mmarchives.tmpl (about)

     1  {{define "mmarchives"}}
     2  {{template "top" .}}
     3  <div id="main" data-handler="mmarchives" class="flex-grow-1 d-flex flex-column align-items-stretch stylish-overflow">
     4    <div class="d-flex brdrbottom align-items-stretch">
     5      <div id="backButton" class="fs18 p-2 hoverbg pointer flex-center brdrright">
     6        <span class="ico-wide-headed-left-arrow fs28"></span>
     7      </div>
     8      <div class="flex-center fs24 p-2 flex-grow-1">[[[previous_mm_runs]]]</div>
     9    </div>
    10    <div class="px-5 py-3 w-100">
    11      <section>
    12        <table id="runTable" class="striped row-hover row-border">
    13          <thead>
    14            <th scope="col">[[[start_time]]]</th>
    15            <th scope="col">[[[Host]]]</th>
    16            <th scope="col">[[[Market]]]</th>
    17            <th scope="col">[[[logs]]]</th>
    18            <th scope="col">[[[Settings]]]</th>
    19          </thead>
    20          <tbody id="runTableBody">
    21            <tr id="runTableRowTmpl">
    22              <td data-tmpl="startTime"></td>
    23              <td data-host></td>
    24              <td>
    25                <img class="mini-icon" data-base-logo>
    26                <span data-base-ticker></span> - 
    27                <img class="mini-icon" data-quote-logo>
    28                <span data-quote-ticker></span>
    29              </td>
    30              <td><button data-tmpl="logs">[[[view_logs]]]</button></td>
    31              <td><span class="ico-settings fs20 pointer mx-2" data-tmpl="settings"></span></td>        
    32            </tr>
    33          </tbody>
    34        </table>
    35      </section>
    36    </div>
    37  </div>
    38  {{template "bottom"}}
    39  {{end}}