Skip to content

Commit 7354663

Browse files
committed
style: Update labels for export and alert counts to include appropriate icons
1 parent 72a3397 commit 7354663

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

src/views/pages/admin-users.html

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ <h2>📱 Edit User <%= user.name %></h2>
108108
</div>
109109

110110
<div style="display: flex; flex-direction: column; gap: 5px;">
111-
<label for="export_count">📱 Exported Count<span style="color: red;">*</span></label>
111+
<label for="export_count">⬇️ Exported Count<span style="color: red;">*</span></label>
112112
<input type="number" id="export_count" name="export_count" value="<%= state.input.export_count ?? user.export_count %>" required>
113113

114114
<% if (state.errors.export_count) { %>
@@ -117,7 +117,7 @@ <h2>📱 Edit User <%= user.name %></h2>
117117
</div>
118118

119119
<div style="display: flex; flex-direction: column; gap: 5px;">
120-
<label for="max_export_count_allowed">📱 Max Export Count Allowed<span style="color: red;">*</span></label>
120+
<label for="max_export_count_allowed">⬇️ Max Export Count Allowed<span style="color: red;">*</span></label>
121121
<input type="number" id="max_export_count_allowed" name="max_export_count_allowed" value="<%= state.input.max_export_count_allowed ?? user.max_export_count_allowed %>" required>
122122

123123
<% if (state.errors.max_export_count_allowed) { %>
@@ -218,6 +218,16 @@ <h2>📱 Edit App <%= app.name %></h2>
218218
<small style="color: #666;">Set a threshold to receive notifications when your alert count reaches this number. Leave blank for no threshold.</small>
219219
</div>
220220

221+
<div style="display: flex; flex-direction: column; gap: 5px;">
222+
<label for="max_monthly_alerts_allowed">🔔 Max Monthly Alerts Allowed</label>
223+
<input type="number" id="max_monthly_alerts_allowed" name="max_monthly_alerts_allowed" value="<%= app.max_monthly_alerts_allowed %>" required>
224+
</div>
225+
226+
<div style="display: flex; flex-direction: column; gap: 5px;">
227+
<label for="alerts_sent_this_month">📣 Alerts Sent This Month</label>
228+
<input type="number" id="alerts_sent_this_month" name="alerts_sent_this_month" value="<%= app.alerts_sent_this_month %>" required>
229+
</div>
230+
221231
<div style="display: flex; justify-content: flex-end; gap: 10px; margin-top: 20px;">
222232
<button type="button" onclick="this.closest('dialog').close()">❌ Cancel</button>
223233
<button type="submit">️🔄 Update</button>

0 commit comments

Comments
 (0)