Skip to content

Commit

Permalink
chore: wip
Browse files Browse the repository at this point in the history
  • Loading branch information
wajeht committed Sep 2, 2024
1 parent 5aa1858 commit 25597c4
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/views/pages/apps-create.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ <h2>🆕 Apps / New</h2>
</div>

<div>
<label for="is_active">🟢 Active</label>
<label for="is_active">🚦 Status</label>
<input type="checkbox" id="is_active" name="is_active">
</div>

Expand Down
6 changes: 3 additions & 3 deletions src/views/pages/apps-id-channels-create.html
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ <h2>📦 Channels / New</h2>
</div>

<div>
<label for="is_active_email">🟢 Active</label>
<label for="is_active_email">🚦 Status</label>
<input type="checkbox" id="is_active_email" name="is_active">
</div>

Expand All @@ -80,7 +80,7 @@ <h2>📦 Channels / New</h2>
</div>

<div>
<label for="is_active_discord">🟢 Active</label>
<label for="is_active_discord">🚦 Status</label>
<input type="checkbox" id="is_active_discord" name="is_active">
</div>

Expand Down Expand Up @@ -116,7 +116,7 @@ <h2>📦 Channels / New</h2>
</div>

<div>
<label for="is_active_sms">🟢 Active</label>
<label for="is_active_sms">🚦 Status</label>
<input type="checkbox" id="is_active_sms" name="is_active">
</div>

Expand Down
6 changes: 3 additions & 3 deletions src/views/pages/apps-id-channels-id-edit.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ <h2><%= config.name %> / Edit</h2>
</div>

<div>
<label for="is_active_email">🟢 Active:</label>
<label for="is_active_email">🚦 Status</label>
<input type="checkbox" id="is_active_email" name="is_active" <%= channel.is_active ? 'checked' : '' %>>
</div>

Expand All @@ -64,7 +64,7 @@ <h2><%= config.name %> / Edit</h2>
</div>

<div>
<label for="is_active_discord">🟢 Active</label>
<label for="is_active_discord">🚦 Status</label>
<input type="checkbox" id="is_active_discord" name="is_active" <%= channel.is_active ? 'checked' : '' %>>
</div>

Expand Down Expand Up @@ -102,7 +102,7 @@ <h2><%= config.name %> / Edit</h2>
</div>

<div>
<label for="is_active_sms">🟢 Active:</label>
<label for="is_active_sms">🚦 Status</label>
<input type="checkbox" id="is_active_sms" name="is_active" <%= channel.is_active ? 'checked' : '' %>>
</div>

Expand Down
2 changes: 1 addition & 1 deletion src/views/pages/apps-id-edit.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ <h2>App / Edit</h2>
</div>

<div>
<label for="is_active">🟢 Active</label>
<label for="is_active">🚦 Status</label>
<input type="checkbox" id="is_active" name="is_active" <%= app.is_active ? 'checked' : '' %>>
</div>

Expand Down

0 comments on commit 25597c4

Please sign in to comment.