go.chromium.org/luci@v0.0.0-20240309015107-7cdc2e660f33/auth_service/services/frontend/templates/pages/change_log.html (about) 1 {{define "title"}}CrIA v2{{end}} 2 3 {{define "content"}} 4 5 <script type="text/javascript" src="/static/js/change_log.js"></script> 6 7 <template id="change-log-row-template"> 8 <tr> 9 <td class="change-log-rev"> 10 <a href="#"></a> 11 </td> 12 <td class="change-log-type"> 13 <span class="view-change" style="cursor: pointer;"> 14 </span> 15 </td> 16 <td class="change-log-when"></td> 17 <td class="change-log-who"></td> 18 <td class="change-log-target"> 19 <a href="#"></a> 20 </td> 21 </tr> 22 </template> 23 24 <template id="change-log-header-template"> 25 <h3 style="margin-top: 10px; text-align: center;"> 26 <a href="#"></a> 27 <small class="text-muted"></small> 28 </h3> 29 <hr style="margin-top: 10px; margin-bottom: 10px;"> 30 </template> 31 32 <div class="container"> 33 <div id="change-log-header"> 34 <!-- Load change-log-header-template --> 35 </div> 36 37 <table class="table table-hover"> 38 <thead> 39 <tr> 40 <th scope="col" style="width: 80px">Rev</th> 41 <th scope="col" style="width: 250px">Change</th> 42 <th scope="col" style="width: 200px">When</th> 43 <th scope="col" style="width: 280px">Who</th> 44 <th>What</th> 45 </tr> 46 </thead> 47 <tbody id="change-log-content"> 48 <!-- Load change-log-row-template --> 49 </tbody> 50 </table> 51 52 <hr> 53 <nav id="change-log-pager"> 54 <ul class="pagination justify-content-between"> 55 <li id="prev" class="page-item"> 56 <a class="page-link" href="#"><span aria-hidden="true">«</span> Newer</a> 57 </li> 58 <li id="next" class="page-item"> 59 <a class="page-link" href="#">Older <span aria-hidden="true">»</span></a> 60 </li> 61 </ul> 62 </nav> 63 </div> 64 65 <div class="modal fade" id="change-log-details" tabindex="-1" role="dialog" aria-labelledby="title-label" 66 aria-hidden="true"> 67 <dic class="modal-dialog modal-dialog-centered"> 68 <div class="modal-content"> 69 <div class="modal-header"> 70 <h4 class="modal-title" id="title-label">Change Details</h4> 71 </div> 72 <div class="modal-body"> 73 <pre id="details-text"></pre> 74 </div> 75 <div class="modal-footer"> 76 <button type="button" class="btn btn-secondary" data-bs-dismiss="modal"> 77 Close 78 </button> 79 </div> 80 </div> 81 </dic> 82 </div> 83 84 {{end}}