diff options
| author | Tyler Hoang <tyler@tylerhoang.xyz> | 2026-05-09 01:31:33 -0700 |
|---|---|---|
| committer | Tyler Hoang <tyler@tylerhoang.xyz> | 2026-05-09 01:31:33 -0700 |
| commit | 596d80d15845da3fb105c26a30457da8ee698be7 (patch) | |
| tree | 3ac4db3da897b9cfb06b7951e3f58c1fe49cf8eb /templates | |
| parent | b4488a36db31a722ae054e076d459bd8c73a341b (diff) | |
Fix form order: move TMDB panel after heading inside form
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/form.html | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/templates/form.html b/templates/form.html index 62e020d..05006e0 100644 --- a/templates/form.html +++ b/templates/form.html @@ -8,15 +8,6 @@ <div class="notice error">{{ error }}</div> {% endif %} - <div class="tmdb-panel"> - <label for="tmdb-query">TMDB title search</label> - <div class="search-row"> - <input id="tmdb-query" type="search" autocomplete="off" placeholder="Search by title"> - <button id="tmdb-search" type="button">Search</button> - </div> - <div id="tmdb-results" class="tmdb-results" aria-live="polite"></div> - </div> - <form class="film-form" method="post" action="{{ action }}"> <input id="tmdb_id" name="tmdb_id" type="hidden" value="{{ film.tmdb_id if film and film.tmdb_id else '' }}"> @@ -40,6 +31,15 @@ </div> </div> + <div class="tmdb-panel"> + <label for="tmdb-query">TMDB title search</label> + <div class="search-row"> + <input id="tmdb-query" type="search" autocomplete="off" placeholder="Search by title"> + <button id="tmdb-search" type="button">Search</button> + </div> + <div id="tmdb-results" class="tmdb-results" aria-live="polite"></div> + </div> + <div class="form-grid"> <div class="field span-2"> <label for="title">Display title</label> |
