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

Fix traceback from log when rendering stickers preview #1533

Merged
merged 2 commits into from
Feb 12, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ Changelog

**Fixed**

- #1533 Fix traceback from log when rendering stickers preview
- #1525 Fix error when creating partitions with analyst user
- #1522 Fix sporadical timeout issue when adding new samples/remarks
- #1506 Changes via manage results don't get applied to partitions
Expand Down
6 changes: 2 additions & 4 deletions bika/lims/browser/templates/stickers_preview.pt
Original file line number Diff line number Diff line change
Expand Up @@ -273,10 +273,8 @@
</tal:tick>
</div>
<tal:stickers repeat="item view/items">
<tal:sticker define="item_id python:item.getId()">
<div class='sticker'
tal:content='structure python:view.renderItem(item)'></div>
</tal:sticker>
<div class='sticker'
tal:content='structure python:view.renderItem(item)'></div>
</tal:stickers>
</div>
</div>
Expand Down