docs(project): add reference Python/Flask implementation

Previous version of Tanabata used as visual and functional reference
for the new Go + SvelteKit rewrite.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-03 18:36:05 +03:00
parent 4c10553549
commit a2823337b6
84 changed files with 3725 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
$(document).on("submit", "#object-edit", function (e) {
e.preventDefault();
$("#loader").css("display", "");
$.ajax({
url: location.pathname + "/edit",
type: "POST",
data: $(this).serialize(),
dataType: "json",
success: function (resp) {
$("#loader").css("display", "none");
if (!resp.status) {
alert(resp.error);
}
},
failure: function (err) {
$("#loader").css("display", "none");
alert(err);
}
});
});