Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DIS-158: Move copied Button group from bottom of checkoutlist to top #2214

Merged
10 changes: 10 additions & 0 deletions code/web/interface/themes/responsive/MyAccount/checkoutsList.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,16 @@
</div>
{/if}

<div class="btn-group">
{if $renewableCheckouts >= 1}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@lathomas64 let's do this with 5 or more per Matt's comment on the ticket. Checking with Matt about moving the Export To Excel as well.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also don't do Export to Excel per the ticket

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

adjusted to 5 or more

{if $source=='all' || $source=='ils'}
<a href="#" onclick="AspenDiscovery.Account.renewSelectedTitles()" class="btn btn-sm btn-default">{translate text="Renew Selected Items" isPublicFacing=true}</a>
<a href="#" onclick="AspenDiscovery.Account.renewAll()" class="btn btn-sm btn-default">{translate text="Renew All" isPublicFacing=true}</a>
{/if}
{/if}
<a class="btn btn-sm btn-default" id="exportToExcel" onclick="return AspenDiscovery.Account.exportCheckouts('{$source}', $('#accountSort_{$source} option:selected').val());">{translate text="Export to CSV" isPublicFacing=true}</a>
</div>

<div class="striped">
{foreach from=$transList item=checkedOutTitle name=checkedOutTitleLoop key=checkedOutKey}
{if $checkedOutTitle->type == 'ils'}
Expand Down
5 changes: 5 additions & 0 deletions code/web/release_notes/25.02.00.MD
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,10 @@

//alexander

//imani
### Other Updates
- Added renew all, renew checked, and export to csv buttons to the top of the checkout list. (*IT*)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@lathomas64 this needs the ticket number added to the release notes.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@mdnoble73 added


//chloe
### WebBuilder Updates
- Fixed an issue preventing administrators from saving a 'URL to link image to' from the 'WebBuilder Portal Cells' page. (*CZ*)
Expand Down Expand Up @@ -98,6 +102,7 @@ Use mb_substr to presrve diacritics in lists (DIS-178) (*WNC*)
- Nick Clemens (WNC)
- Yanjun Li (YL)
- Leo Stoyanov (LS)
- Imani Thomas (IT)

### Grove For Libraries
- Mark Noble (MDN)
Expand Down
Loading