github.com/cheikhshift/buffalo@v0.9.5/generators/resource/templates/templates/model-view-edit.html.tmpl (about)

     1  <div class="page-header">
     2    <h1>Edit {{.model}}</h1>
     3  </div>
     4  
     5  <%= form_for({{.varSingular}}, {action: {{.routeFirstDownSingular}}Path({ {{.resourceSingularUnder}}_id: {{.varSingular}}.ID }), method: "PUT"}) { %>
     6    <%= partial("{{.filesPath}}/form.html") %>
     7    <a href="<%= {{.routeFirstDown}}Path({ {{.modelSingularUnder}}_id: {{.varSingular}}.ID }) %>" class="btn btn-warning" data-confirm="Are you sure?">Cancel</a>
     8  <% } %>