Current section

Files

Jump to
mandarin priv templates mandarin.gen.html new.html.eex
Raw

priv/templates/mandarin.gen.html/new.html.eex

<section class="content-header">
<h1>
New <%= schema.human_singular %>
<small>Optional description</small>
</h1>
<ol class="breadcrumb">
<li><a href="#"><i class="fa fa-dashboard"></i> <%= schema.human_plural %></a></li>
<li class="active">new</li>
</ol>
</section>
<section class="content container-fluid">
<div class="box box-primary with-border">
<div class="box-body">
<%%= render "form.html", Map.put(assigns, :action, Routes.<%= context.basename %>_<%= schema.route_helper %>_path(@conn, :create)) %>
</div>
<div class="box-footer">
<%% back_link_content = [content_tag(:i, "", class: "fa fa-arrow-left"), " Back"] %>
<span><%%= link back_link_content, to: Routes.<%= context.basename %>_<%= schema.route_helper %>_path(@conn, :index), class: "btn btn-default" %></span>
</div>
</section>