Skip to content
This repository has been archived by the owner on Jan 23, 2025. It is now read-only.

Commit

Permalink
rename connect buttons
Browse files Browse the repository at this point in the history
Signed-off-by: ianmuchyri <ianmuchiri8@gmail.com>
  • Loading branch information
ianmuchyri committed Dec 1, 2023
1 parent 0ad3a93 commit d4bd14d
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 17 deletions.
6 changes: 3 additions & 3 deletions ui/web/template/channel.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,17 @@
type="button"
class="btn body-button"
>
Channel Things
Connect
</a>
<a href="/channels/{{ .Channel.ID }}/users" type="button" class="btn body-button">
Channel Users
Assign Users
</a>
<a
href="/channels/{{ .Channel.ID }}/groups"
type="button"
class="btn body-button"
>
Channel Groups
Assign Groups
</a>
</div>
<div class="table-responsive table-container">
Expand Down
4 changes: 2 additions & 2 deletions ui/web/template/channelgroups.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
Channel
</a>
<a href="/channels/{{ .ChannelID }}/users" type="button" class="btn body-button">
Channel Users
Assign Users
</a>
<a href="/channels/{{ .ChannelID }}/things" type="button" class="btn body-button">
Channel Things
Connect
</a>
</div>
<div class="table-responsive table-container">
Expand Down
4 changes: 2 additions & 2 deletions ui/web/template/channelthings.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
Channel
</a>
<a href="/channels/{{ .ChannelID }}/users" type="button" class="btn body-button">
Channel Users
Assign Users
</a>
<a href="/channels/{{ .ChannelID }}/groups" type="button" class="btn body-button">
Channel Groups
Assign Groups
</a>
</div>
<div class="table-responsive table-container">
Expand Down
4 changes: 2 additions & 2 deletions ui/web/template/channelusers.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
Channel
</a>
<a class="btn body-button" href="/channels/{{ .ChannelID }}/things" role="button">
Channel Things
Connect
</a>
<a class="btn body-button" href="/channels/{{ .ChannelID }}/groups" role="button">
Channel Groups
Assign Groups
</a>
</div>
<div class="table-responsive table-container">
Expand Down
4 changes: 2 additions & 2 deletions ui/web/template/group.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
<div class="row">
<div class="buttons mb-3">
<a class="btn body-button" href="/groups/{{ .Group.ID }}/users" role="button">
Group Users
Assign Users
</a>
<a class="btn body-button" href="/groups/{{ .Group.ID }}/channels" role="button">
Group Channels
Assign Channels
</a>
</div>
<div class="table-responsive table-container">
Expand Down
2 changes: 1 addition & 1 deletion ui/web/template/groupchannels.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<div class="buttons mb-3">
<a class="btn body-button" href="/groups/{{ .GroupID }}" role="button">Group</a>
<a class="btn body-button" href="/groups/{{ .GroupID }}/users" role="button">
Group Users
Assign Users
</a>
</div>
<div class="table-responsive table-container">
Expand Down
2 changes: 1 addition & 1 deletion ui/web/template/groupusers.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<div class="buttons mb-3">
<a class="btn body-button" href="/groups/{{ .GroupID }}" role="button">Group</a>
<a class="btn body-button" href="/groups/{{ .GroupID }}/channels" role="button">
Group Channels
Assign Channels
</a>
</div>
<div class="table-responsive table-container">
Expand Down
4 changes: 2 additions & 2 deletions ui/web/template/thing.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
<div class="row">
<div class="buttons mb-3">
<a class="btn body-button" href="/things/{{ .Thing.ID }}/channels" role="button">
Thing Channels
Connect
</a>
<a class="btn body-button" href="/things/{{ .Thing.ID }}/users" role="button">
Thing Users
Share
</a>
</div>
<div class="table-responsive table-container">
Expand Down
2 changes: 1 addition & 1 deletion ui/web/template/thingchannels.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<div class="buttons mb-3">
<a class="btn body-button" href="/things/{{ .Thing.ID }}" role="button">Thing</a>
<a class="btn body-button" href="/things/{{ .Thing.ID }}/users" role="button">
Thing Users
Share
</a>
</div>
<div class="table-responsive table-container">
Expand Down
2 changes: 1 addition & 1 deletion ui/web/template/thingusers.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<div class="buttons mb-3">
<a class="btn body-button" href="/things/{{ .ThingID }}" role="button">Thing</a>
<a class="btn body-button" href="/things/{{ .ThingID }}/channels" role="button">
Thing Channels
Connect
</a>
</div>
<div class="table-responsive table-container">
Expand Down

0 comments on commit d4bd14d

Please sign in to comment.