Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 {% extends "templates/base.html" %} | |
| 2 {% block content %} | |
| 3 <div class="notice"> | |
| 4 Machine Provider is an open-source provider of VMs and a part of <a href="http s://github.com/luci/luci-py">LUCI</a>. | |
| 5 </div> | |
| 6 <h2>Pages</h2> | |
| 7 <ul> | |
| 8 {% if is_admin %} | |
| 9 <li><a href="/leases">Lease Requests</a></a></li> | |
| 10 <li><a href="/catalog">Machine Catalog</a></li> | |
| 11 <li><a href="/_ah/api/explorer">Endpoints</a></li> | |
| 12 {% else %} | |
| 13 <li>Currently, pages are only visible to admins. Are you signed in?</li> | |
| 14 {% endif %} | |
| 15 </ul> | |
| 16 {% endblock %} | |
| OLD | NEW |