Skip to content

Commit

Permalink
Move calendar to the left in zusatzabo detail
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmpp committed Nov 22, 2023
1 parent 4b37507 commit 8700768
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/scripts/abos/detail/abosdetail.html
Original file line number Diff line number Diff line change
Expand Up @@ -173,15 +173,15 @@ <h3 class="panel-title">
</p>
</div>
<div class="col-md-6 col-md-offset-4">
<p class="input-group">
<p class="input-group abo-input-date-picker">
<input type="text" class="form-control input-date" localdate datetime-picker="dd.MM.yyyy" ng-model="zusatzAbo.start" is-open="openZusatzAbo.start[zusatzAbo.id]" ng-change="updateZusatzaboDatetimePicker(zusatzAbo)" enable-time="false" datepicker-options="zusatzaboPickerStartDateList[findIndexByZusatzaboId(zusatzAbo.id)].datepickerOptions" />
<span class="input-group-btn">
<button type="button" class="btn btn-default" ng-click="openCalendarZusatzAbo($event,zusatzAbo.id, 'start')"><i class="fa fa-calendar"></i></button>
</span>
</p>
</div>
<div class="col-md-6 col-md-offset-4">
<p class="input-group">
<p class="input-group abo-input-date-picker">
<input type="text" class="form-control input-date" localdate datetime-picker="dd.MM.yyyy" ng-model="zusatzAbo.ende" is-open="openZusatzAbo.ende[zusatzAbo.id]" ng-change="updateZusatzaboDatetimePicker(zusatzAbo)" enable-time="false" datepicker-options="zusatzaboPickerEndDateList[findIndexByZusatzaboId(zusatzAbo.id)].datepickerOptions"/>
<span class="input-group-btn">
<button type="button" class="btn btn-default" ng-click="openCalendarZusatzAbo($event,zusatzAbo.id ,'ende')"><i class="fa fa-calendar"></i></button>
Expand Down

0 comments on commit 8700768

Please sign in to comment.