mirror of
https://github.com/wahyd4/Libr.git
synced 2026-08-09 12:56:14 +10:00
19 lines
438 B
Plaintext
19 lines
438 B
Plaintext
- if flash[:notice]
|
|
div.alert.alert-success = flash[:notice]
|
|
- case @query
|
|
- when 'borrowed'
|
|
div.btn-group
|
|
a.btn href="?query=owned" 我的图书
|
|
a.btn.active 已借阅图书
|
|
a.btn 想读图书
|
|
= render 'shared/borrowed-books'
|
|
- when 'wanted'
|
|
p No more books.
|
|
- else
|
|
div.btn-group
|
|
a.btn.active 我的图书
|
|
a.btn href="?query=borrowed" 已借阅图书
|
|
a.btn 想读图书
|
|
= render 'shared/booklist'
|
|
|