1. 댓글 목록 사용자 정의
새 댓글 목록 페이지 추가 및 명령줄 실행
> play crud:ov --template Comments/list
은 /app/views/Comments/list.html을 생성합니다.
생성된 파일에서 #{crud.table /}은 대체할 수 있는 테이블의 내용입니다. 더 많은 열을 표시하려면 다음 콘텐츠를 사용하세요
#{crud.table fields:['content', 'post', 'author'] /}
특정 열을 비교하려는 경우 콘텐츠가 처리됩니다.
#{crud.table fields:['content', 'post', 'author']}
#{crud.custom 'content' }
${object.content.length() > 50 ? '…' : object.content}
#{/crud.custom}
#{/crud.table}
2. 게시물 양식 사용자 정의
>play crud:ov --template Posts/show
수정 #{crud.form / }
#{ crud.form}
;style type="text/CSS">
.tags-list .tag {
.tags -list .selected {
배경: #222;
색상: #fff;
}