retrospring/app/views/user/lists.haml
Georg Gadinger ea0685136e Rename Groups to Lists
haha regexp go brrr

special thanks to @seatsea for helping me out with the French locales
2020-05-25 18:04:54 +02:00

9 lines
189 B
Text

%ul
- @lists.each do |list|
%li
- if list.private?
%i.fa.fa-lock
= list.display_name
- provide(:title, user_title(@user, 'lists'))
- parent_layout 'user/profile'