@@ -108,7 +108,7 @@ <h2>📱 Edit User <%= user.name %></h2>
108
108
</ div >
109
109
110
110
< 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 >
112
112
< input type ="number " id ="export_count " name ="export_count " value ="<%= state.input.export_count ?? user.export_count %> " required >
113
113
114
114
< % if (state.errors.export_count) { %>
@@ -117,7 +117,7 @@ <h2>📱 Edit User <%= user.name %></h2>
117
117
</ div >
118
118
119
119
< 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 >
121
121
< 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 >
122
122
123
123
< % if (state.errors.max_export_count_allowed) { %>
@@ -218,6 +218,16 @@ <h2>📱 Edit App <%= app.name %></h2>
218
218
< small style ="color: #666; "> Set a threshold to receive notifications when your alert count reaches this number. Leave blank for no threshold.</ small >
219
219
</ div >
220
220
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
+
221
231
< div style ="display: flex; justify-content: flex-end; gap: 10px; margin-top: 20px; ">
222
232
< button type ="button " onclick ="this.closest('dialog').close() "> ❌ Cancel</ button >
223
233
< button type ="submit "> ️🔄 Update</ button >
0 commit comments