File tree Expand file tree Collapse file tree
grails/grails-app/views/student Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ <!DOCTYPE html>
2+ <html >
3+ <head >
4+ <meta name =" layout" content =" main" />
5+ </head >
6+ <body >
7+ <div id =" create-student" class =" content scaffold-create" role =" main" >
8+ <g:form resource =" ${ this . student} " method =" POST" >
9+ <fieldset class =" form" >
10+ <f:all bean =" student" />
11+ </fieldset >
12+ <fieldset class =" buttons" >
13+ <g:submitButton name =" create" class =" save" value =" Create" />
14+ </fieldset >
15+ </g:form >
16+ </div >
17+ </body >
18+ </html >
Original file line number Diff line number Diff line change 1+ <!DOCTYPE html>
2+ <html >
3+ <head >
4+ <meta name =" layout" content =" main" />
5+ </head >
6+ <body >
7+ <div class =" nav" role =" navigation" >
8+ <ul >
9+ <li ><g:link class =" create" action =" create" >Create</g:link ></li >
10+ </ul >
11+ </div >
12+ <div id =" list-student" class =" content scaffold-list" role =" main" >
13+ <f:table collection =" ${ studentList } " properties =" ['firstName', 'lastName']" />
14+ </div >
15+ </body >
16+ </html >
Original file line number Diff line number Diff line change 1+ <!DOCTYPE html>
2+ <html >
3+ <head >
4+ <meta name =" layout" content =" main" />
5+ </head >
6+ <body >
7+ <div class =" nav" role =" navigation" >
8+ <ul >
9+ <li ><g:link class =" list" action =" index" >Students list</g:link ></li >
10+ </ul >
11+ </div >
12+ <div id =" show-student" class =" content scaffold-show" role =" main" >
13+ <f:display bean =" student" />
14+ <g:form resource =" ${ this . student} " method =" DELETE" >
15+ <fieldset class =" buttons" >
16+ <input class =" delete" type =" submit" value =" delete" />
17+ </fieldset >
18+ </g:form >
19+ </div >
20+ </body >
21+ </html >
You can’t perform that action at this time.
0 commit comments