포스트 수정 링크 추가
마지막으로 포스트 목록 페이지의 각 포스트에서 수정 페이지로 이동할 수 있게 링크를 추가해 보자.
▼ app/views/Post/Index.html
...
<tbody> {{range .posts}} <tr> <th scope="row">{{.Id}}</th> <td>{{.Title}}</td> <td><time>{{.CreatedAt}}</time></td> <td><time>{{.UpdatedAt}}</time></td> <td><a href="{{url "Post.Show" .Id}}">Show</a></td> <td><a href="{{url "Post.Edit" .Id}}">Edit</a></td> </tr> {{end}} </tbody>
...
http://localhost:9000/posts에 접속하여 포스트 수정 기능을 확인해 보자.


