Skip to content
This repository was archived by the owner on Feb 13, 2025. It is now read-only.

Usability update for the clients view #133

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion views/clients.haml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,14 @@
- clients.sort_by { |c| c["name"].downcase }.each do |client|
%tr
%td
= client["name"]
- if client["url"]
%a(href="#{client["url"]}")
= client["name"]
- elsif client["repository"]
%a(href="#{client["repository"]}")
= client["name"]
- else
= client["name"]
%td
- if client["active"]
%i(class="fa fa-smile-o icon")
Expand Down