You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/app/fileset.py
+17-2Lines changed: 17 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -239,6 +239,11 @@ def fileset():
239
239
html+="<button type='submit' style='margin-left: 10px;'>Delete the Fileset</button>"
240
240
html+="</form>"
241
241
242
+
# Manually log email notification
243
+
html+=f"""<form action="{url_for("manual_email_notification", fileset_id=id)}" method="POST" onsubmit="return confirm('Are you sure you want to log a user email notification for the given fileset?');">"""
244
+
html+="<button type='submit' style='margin-left: 10px;'>Log User Email Notification</button>"
0 commit comments