Current section
Files
Jump to
Current section
Files
lib/fun_with_flags/ui/templates/index.html.eex
<!DOCTYPE html>
<html lang="en">
<%= _head(conn: @conn, title: "List") %>
<body>
<nav id="fwf-top-bar" class="navbar navbar-inverse navbar-toggleable-xl">
<a class="navbar-brand" href="https://github.com/tompave/fun_with_flags">FunWithFlags</a>
<div class="collapse navbar-collapse">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="">all flags</a>
</li>
</ul>
<a href="<%= path(@conn, "/new") %>" class="btn btn-secondary">New Flag</a>
</div>
</nav>
<div class="container mt-3">
<div class="row">
<div class="col">
<table class="table table-hover">
<thead class="thead-default">
<tr>
<th>name</th>
<th>status</th>
<th>gates</th>
</tr>
</thead>
<tbody>
<%= for flag <- @flags do %>
<tr>
<td>
<a href="<%= path(@conn, "/flags/#{flag.name}") %>"><%= flag.name %></a>
</td>
<td>
<%= html_smart_status_for(flag) %>
</td>
<td>
<%= html_gate_list(flag) %>
</td>
</tr>
<% end %>
</tbody>
</table>
</div>
</div>
</div>
</body>
</html>