Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
Piszmog committed Aug 17, 2024
1 parent e79ad8a commit 12294ae
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 12 deletions.
4 changes: 1 addition & 3 deletions components/filter.templ
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
package components

import (
"github.com/Piszmog/pathwise/types"
)
import "github.com/Piszmog/pathwise/types"

templ filterForm() {
<script type="text/javascript">
Expand Down
5 changes: 2 additions & 3 deletions components/jobs.templ
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
package components

import (
"strconv"

"github.com/Piszmog/pathwise/types"
"github.com/Piszmog/pathwise/utils"
"strconv"
)

templ loadingJobs() {
Expand Down Expand Up @@ -179,7 +178,7 @@ templ jobApplicationForm() {
slideOver.classList.toggle('translate-x-full');
overlay.classList.toggle('hidden');
}
</script>
</script>
<form
id="new-job-form"
hx-post="/jobs"
Expand Down
4 changes: 1 addition & 3 deletions components/note.templ
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
package components

import (
"strconv"
)
import "strconv"

templ note(id int64) {
<form
Expand Down
2 changes: 1 addition & 1 deletion components/pagination.templ
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package components

import (
"strconv"
"github.com/Piszmog/pathwise/types"
"github.com/Piszmog/pathwise/utils"
"strconv"
)

templ pagination(paginationOpts types.PaginationOpts, filterOpts types.FilterOpts) {
Expand Down
6 changes: 4 additions & 2 deletions components/stats.templ
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
package components

import "github.com/Piszmog/pathwise/types"
import "strconv"
import (
"github.com/Piszmog/pathwise/types"
"strconv"
)

templ loadingStats() {
<div hx-get="/stats" hx-trigger="load">
Expand Down

0 comments on commit 12294ae

Please sign in to comment.