Skip to content

Commit

Permalink
zpretty
Browse files Browse the repository at this point in the history
  • Loading branch information
pbauer committed Feb 19, 2024
1 parent b49b097 commit 21a7e83
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 46 deletions.
28 changes: 13 additions & 15 deletions plone/app/iterate/browser/cancel.pt
Original file line number Diff line number Diff line change
Expand Up @@ -36,21 +36,19 @@

<div class="formControls">

<input
class="btn btn-danger"
type="submit"
name="form.button.Cancel"
value="Cancel checkout"
i18n:attributes="value"
/>

<input
class="btn btn-secondary"
type="submit"
name="form.button.Keep"
value="Keep checkout"
i18n:attributes="value"
/>
<input class="btn btn-danger"
name="form.button.Cancel"
type="submit"
value="Cancel checkout"
i18n:attributes="value"
/>

<input class="btn btn-secondary"
name="form.button.Keep"
type="submit"
value="Keep checkout"
i18n:attributes="value"
/>

</div>

Expand Down
30 changes: 14 additions & 16 deletions plone/app/iterate/browser/checkin.pt
Original file line number Diff line number Diff line change
Expand Up @@ -56,23 +56,21 @@
></textarea>
</div>

<div class="formControls">
<input
class="btn btn-primary"
type="submit"
name="form.button.Checkin"
value="Check in"
i18n:attributes="value"
/>
<div class="formControls">
<input class="btn btn-primary"
name="form.button.Checkin"
type="submit"
value="Check in"
i18n:attributes="value"
/>

<input
class="btn btn-secondary"
type="submit"
name="form.button.Cancel"
value="Cancel"
i18n:attributes="value label_cancel"
/>
</div>
<input class="btn btn-secondary"
name="form.button.Cancel"
type="submit"
value="Cancel"
i18n:attributes="value label_cancel"
/>
</div>

</fieldset>

Expand Down
28 changes: 13 additions & 15 deletions plone/app/iterate/browser/checkout.pt
Original file line number Diff line number Diff line change
Expand Up @@ -91,21 +91,19 @@

<div class="formControls">

<input
class="btn btn-primary"
type="submit"
name="form.button.Checkout"
value="Check out"
i18n:attributes="value"
/>

<input
class="btn btn-secondary"
type="submit"
name="form.button.Cancel"
value="Cancel"
i18n:attributes="value label_cancel"
/>
<input class="btn btn-primary"
name="form.button.Checkout"
type="submit"
value="Check out"
i18n:attributes="value"
/>

<input class="btn btn-secondary"
name="form.button.Cancel"
type="submit"
value="Cancel"
i18n:attributes="value label_cancel"
/>

</div>

Expand Down

0 comments on commit 21a7e83

Please sign in to comment.