summaryrefslogtreecommitdiff
path: root/themes/okadmin/templates/resource.liquid
blob: f7552efcea42287e53f040cb82af15975389c083 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{% include 'partials/head' %}

{% include 'partials/flash' %}

<nav class="resource-nav">
  <a href="../.." class="btn">back</a><br>
  <br>
  <a href="/admin/{{ resource.type }}/__new__/" class="btn">add&nbsp;another</a>
</nav>

<section class="resource main" data-type="{{ resource.type }}" data-id="{{ resource.id }}">
  <h2>Edit {{ resource.type }} '{{ resource.spec.title.value }}'</h2>
  <form action="." method="POST" id="resource_form">
    <input type="hidden" name="_method" value="PUT">
    {% include 'partials/inputs' %}
    <label>&nbsp;</label><button type="submit" class="btn">Save</button>
    <div class="clear"></div>
  </form>
  <form action="." method="POST" id="delete_form">
    <input type="hidden" name="_method" value="DELETE">
    <button type="submit" class="btn">Delete Record</button>
  </form>
</section>

{% include 'partials/tail' %}