Hash :
7d4e6756
Author :
Thomas de Grivel
Date :
2021-11-18T23:06:28
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
<div class="container-fluid">
<div class="row">
<div class="col col-12 col-sm-7">
<h1><%= @org.name || @org.slug.slug %></h1>
</div>
<div class="col col-12 col-sm-4">
<%= link gettext("Edit"),
to: Routes.organisation_path(@conn, :edit, @org.slug.slug),
class: "btn btn-primary" %>
</div>
</div>
<div class="row">
<div class="col col-12 col-md-7">
<hr/>
<h2><%= gettext "Repositories" %></h2>
</div>
<div class="col col-12 col-md-4">
<hr/>
<h2><%= gettext "Properties" %></h2>
<table class="table admin-properties">
<tr>
<th><%= gettext "Name" %></th>
<td><%= @org.name %></td>
</tr>
<tr>
<th><%= gettext "Slug" %></th>
<td><%= @org.slug.slug %></td>
</tr>
<tr>
<th><%= gettext "Description" %></th>
<td>
<%= if @org.description do %>
<%= raw Earmark.as_html!(@org.description) %>
<% end %>
</td>
</tr>
<tr>
<th><%= gettext "Users" %></th>
<td>
<%= for user <- @org.users do %>
<%= link(user.slug.slug, to: Routes.slug_path(@conn, :show, user.slug.slug), class: "user") %>
<% end %>
</td>
</tr>
</table>
</div>
</div>
</div>