summaryrefslogtreecommitdiff
path: root/themes/okadmin/templates/resource.liquid
diff options
context:
space:
mode:
Diffstat (limited to 'themes/okadmin/templates/resource.liquid')
-rw-r--r--themes/okadmin/templates/resource.liquid8
1 files changed, 4 insertions, 4 deletions
diff --git a/themes/okadmin/templates/resource.liquid b/themes/okadmin/templates/resource.liquid
index 88f93bd..6af08b9 100644
--- a/themes/okadmin/templates/resource.liquid
+++ b/themes/okadmin/templates/resource.liquid
@@ -3,9 +3,9 @@
{% include 'partials/flash' %}
<nav class="resource-nav">
- <a href="../..">Back</a><br>
+ <a href="../.." class="btn">Back</a><br>
<br>
- <a href="/admin/{{ resource.type }}/__new__/">ADD ANOTHER</a>
+ <a href="/admin/{{ resource.type }}/__new__/" class="btn">ADD ANOTHER</a>
</nav>
<section class="resource main" data-type="{{ resource.type }}" data-id="{{ resource.id }}">
@@ -13,12 +13,12 @@
<form action="." method="POST" id="resource_form">
<input type="hidden" name="_method" value="PUT">
{% include 'partials/inputs' %}
- <label>&nbsp;</label><button type="submit">Save</button>
+ <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">Delete Record</button>
+ <button type="submit" class="btn">Delete Record</button>
</form>
</section>