forked from OCA/reporting-engine
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
102 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<templates> | ||
<t t-name='ReportAsyncConfiguration'> | ||
<div class="form"> | ||
<div class="form-group"> | ||
<label for="async-user-email">Email Address</label> | ||
<input type="email" class="form-control" id="async-user-email" | ||
aria-describedby="emailHelp" | ||
placeholder="[email protected]"/> | ||
<small id="async-user-email-help" class="form-text text-muted"> | ||
Email will be used to send the report after queue job is | ||
done on the background | ||
</small> | ||
</div> | ||
<div class="form-group"> | ||
<div class="form-check"> | ||
<input type="checkbox" class="form-check-input" | ||
id="async_report_checker"/> | ||
<label class="form-check-label" for="async_report_checker"> | ||
Async Report | ||
</label> | ||
</div> | ||
<small id="async-report-checker-help" class="form-text text-muted"> | ||
Check enables async report to be created on the background | ||
via queue job and sent to a valid email. | ||
</small> | ||
</div> | ||
</div> | ||
</t> | ||
</templates> |