Skip to content
Snippets Groups Projects

Resolve "View job information after applying"

4 files
+ 68
68
Compare changes
  • Side-by-side
  • Inline

Files

@@ -26,6 +26,7 @@
<dialog
th:fragment="overlay"
th:id="|apply-${offer.id}-overlay|"
th:attr="data-closable=${app.exists() ? 'true' : null}"
class="dialog"
th:styleappend="${offer.requireApplicationText} ? '--width: 40rem;' : ''">
<form class="flex vertical p-7" th:action="@{/application/submit}" th:method="post">
@@ -70,10 +71,11 @@
<button
type="button"
class="button p-less"
data-style="outlined"
th:data-style="${app.exists()} ? 'filled' : 'outlined'"
th:text="#{general.close}"
data-cancel></button>
<button
th:unless="${app.exists()}"
type="submit"
class="button p-less"
th:text="#{jobOffer.apply}"></button>
Loading