diff --git a/src/app/views/groups/index.zmpl b/src/app/views/groups/index.zmpl
index 1522924..76457d0 100644
--- a/src/app/views/groups/index.zmpl
+++ b/src/app/views/groups/index.zmpl
@@ -1,11 +1,3 @@
-
-
-
-
-@partial partials/header
-
-Merge Songs
-
-
\ No newline at end of file
+
+ Content goes here
+
diff --git a/src/app/views/songs.zig b/src/app/views/songs.zig
index b634534..164f928 100644
--- a/src/app/views/songs.zig
+++ b/src/app/views/songs.zig
@@ -5,15 +5,7 @@ const queries = @import("../../queries.zig");
pub fn index(request: *jetzig.Request) !jetzig.View {
var root = try request.data(.object);
- const htmx_query = (try request.queryParams()).getT(.string, "s");
-
- try root.put("htmx", htmx_query != null);
-
- const songs = if (htmx_query) |name|
- try queries.entityQueryResult(request, queries.loadQuery(.song, .entities_by_name), .{name})
- else
- try queries.entityQueryResult(request, queries.loadQuery(.song, .entities), .{});
-
+ const songs = try queries.entityQueryResult(request, queries.loadQuery(.song, .entities), .{});
try root.put("songs", songs);
return request.render(.ok);
diff --git a/src/app/views/songs/index.zmpl b/src/app/views/songs/index.zmpl
index 862b753..6964630 100644
--- a/src/app/views/songs/index.zmpl
+++ b/src/app/views/songs/index.zmpl
@@ -1,6 +1,6 @@
@zig {
const ColumnChoices = []const enum{song, album, artist, artistlist, scrobbles, date};
- const columns: ColumnChoices = &.{.song, .album, .artistlist, .scrobbles};
+ const columns: ColumnChoices = &.{.song, .artistlist, .scrobbles};
}
@@ -8,10 +8,8 @@
- @if (! $.htmx)
@partial partials/header
Songs
- @end
@partial partials/newtable(T: ColumnChoices, table_data: .songs, columns: columns)