This commit is contained in:
David Maisonave
2024-10-23 03:16:28 -04:00
parent 3d40b1bf25
commit cad16cac21
2 changed files with 31 additions and 0 deletions

View File

@@ -970,6 +970,10 @@ def mergeTags():
stash.mergeMetadata(scene1, scene2)
stash.Log(f"Done merging scenes for scene {scenes[0]} and scene {scenes[1]}")
# ToDo: Add additional menu items option only for bottom of report:
# Remove from stash all files no longer part of stash library
# Remove from stash all files in the Exclusion list (Not supporting regexps)
try:
if stash.PLUGIN_TASK_NAME == "tag_duplicates_task":
mangeDupFiles(tagDuplicates=True, merge=mergeDupFilename)

View File

@@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Website</title>
</head>
<body>
<h1>Welcome to My Website</h1>
<p>This is a simple static website.</p>
<form action="https://fabform.io/f/YOUR_FORM_ENDPOINT" method="post">
<!-- Replace "YOUR_FORM_ENDPOINT" with your actual FabForm form endpoint -->
<label for="name">Name:</label>
<input type="text" id="name" name="name" required><br>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required><br>
<label for="message">Message:</label>
<textarea id="message" name="message" required></textarea><br>
<input type="submit" value="Submit">
</form>
</body>
</html>