diff options
| author | Raphael Kabo <mail@raphaelkabo.com> | 2025-05-28 18:01:08 +0100 | 
|---|---|---|
| committer | Raphael Kabo <mail@raphaelkabo.com> | 2025-05-28 18:01:08 +0100 | 
| commit | a5e2faf58ddd4793a5f7e3e284b023162d69cbb3 (patch) | |
| tree | df8dacfd279760f505d4b0f6dcf195a6a44a6a1b /views/optionsform.handlebars | |
| parent | bc9e983b16d9ac2d27a4458c0a87f9d11aa80c0e (diff) | |
| parent | bde9b408342f56833cf0a514488365189083f312 (diff) | |
Merge remote-tracking branch 'origin/main' into raphael/add-mailgun
Diffstat (limited to 'views/optionsform.handlebars')
| -rwxr-xr-x | views/optionsform.handlebars | 16 | 
1 files changed, 8 insertions, 8 deletions
diff --git a/views/optionsform.handlebars b/views/optionsform.handlebars index 85ebd9f..78e184b 100755 --- a/views/optionsform.handlebars +++ b/views/optionsform.handlebars @@ -1,46 +1,46 @@  <div class="form-group row"> -  <div class="col-sm-2">Options</div> +  <div class="col-sm-2">{{t "options.title" }}</div>    <div class="col-sm-10">      <div class="form-check">        <input class="form-check-input" type="checkbox" id="joinCheckbox" name="joinCheckbox" {{#if data.joinCheckbox}}checked{{/if}}>        <label class="form-check-label" for="joinCheckbox"> -        Users can mark themselves as attending this event +        {{t "views.join" }}        </label>      </div>      <div class="form-check">        <input class="form-check-input" type="checkbox" id="guestlistCheckbox" name="guestlistCheckbox"  {{#if data.guestlistCheckbox}}checked{{/if}}>        <label class="form-check-label" for="guestlistCheckbox"> -        Display the list of attendees +        {{t "views.options.showlistattendees" }}        </label>      </div>      <div class="form-check">        <input class="form-check-input" type="checkbox" id="interactionCheckbox" name="interactionCheckbox" {{#if data.interactionCheckbox}}checked{{/if}}>        <label class="form-check-label" for="interactionCheckbox"> -        Users can post comments on this event +        {{t "views.interaction" }}        </label>      </div>    </div>  </div>  <div class="form-group row"> -  <div class="col-sm-2">Options</div> +  <div class="col-sm-2">{{t "options.title" }}</div>    <div class="col-sm-10">      <div class="form-check">        <input class="form-check-input" type="checkbox" id="joinCheckbox" name="joinCheckbox" {{#if eventData.usersCanAttend}}checked{{/if}}>        <label class="form-check-label" for="joinCheckbox"> -        Users can mark themselves as attending this event +        {{t "views.join" }}        </label>      </div>      <div class="form-check">        <input class="form-check-input" type="checkbox" id="guestlistCheckbox" name="guestlistCheckbox"  {{#if eventData.showUsersList}}checked{{/if}}>        <label class="form-check-label" for="guestlistCheckbox"> -        Display the list of attendees +        {{t "views.options.showlistattendees" }}        </label>      </div>      <div class="form-check">        <input class="form-check-input" type="checkbox" id="interactionCheckbox" name="interactionCheckbox" {{#if eventData.usersCanComment}}checked{{/if}}>        <label class="form-check-label" for="interactionCheckbox"> -        Users can post comments on this event +        {{t "views.interaction" }}        </label>      </div>    </div>  | 
