Hash :
955470ee
Author :
Thomas de Grivel
Date :
2022-01-26T21:15:05
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 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
<div class="container-fluid">
<h1><%= gettext("Organisation %{org}", org: @org.name || @org.slug.slug) %></h1>
<table class="table admin-properties">
<tr>
<th><%= gettext "Id" %></th>
<td><%= @org.id %></td>
</tr>
<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.admin_user_path(@conn, :show, user), class: "user") %>
<% end %>
<%= link "-",
to: Routes.admin_organisation__path(@conn, :remove_user, @org),
class: "btn btn-danger btn-sm" %>
<%= link "+",
to: Routes.admin_organisation__path(@conn, :add_user, @org),
class: "btn btn-primary btn-sm" %>
</td>
</tr>
<tr>
<th><%= gettext "Repositories" %></th>
<td>
<ul>
<%= for repo <- @org.owned_repositories do %>
<li>
<%= link(Repository.full_slug(repo), to: Routes.admin_repository_path(@conn, :show, repo), class: "repo") %>
</li>
<% end %>
</ul>
</td>
</tr>
<tr>
<th><%= gettext "Disk usage" %></th>
<td><%= disk_usage(@org.disk_usage) %></td>
</tr>
</table>
<%= link gettext("Delete organisation"),
to: Routes.admin_organisation_path(@conn, :delete, @org),
class: "btn btn-danger",
data: [confirm: gettext("Are you sure you want to delete this org ?")],
method: :delete %>
<%= link gettext("Edit organisation"),
to: Routes.admin_organisation_path(@conn, :edit, @org),
class: "btn btn-primary" %>
<%= link gettext("Show"),
to: Routes.slug_path(@conn, :show, @org.slug.slug),
class: "btn btn-primary" %>
</div>