From dee6b3e3fd32b6b002a465e5723d51860e763b20 Mon Sep 17 00:00:00 2001 From: Jules Laplace Date: Mon, 13 Apr 2015 18:50:25 -0400 Subject: slugify id from title, patch static special cases for now --- themes/okadmin/public/js/app.js | 13 ++++++++++--- themes/okadmin/templates/index.liquid | 2 +- themes/okadmin/templates/resource.liquid | 4 ++-- 3 files changed, 13 insertions(+), 6 deletions(-) (limited to 'themes') diff --git a/themes/okadmin/public/js/app.js b/themes/okadmin/public/js/app.js index b53d21f..ab571f3 100644 --- a/themes/okadmin/public/js/app.js +++ b/themes/okadmin/public/js/app.js @@ -51,7 +51,8 @@ var OKAdmin = function(){ // fix post indexing in list-driven inputs $(".main.resource form").submit(function(e){ - var $id = $("[name=id]"), $title = $("[name=title]"), $shortname = $("[name=shortname]") + var $id = $("[name=id]"), $title = $("[name=title]"), $shortname = $("[name=shortname]"), $section = $(".resource.main") + var id = $section.data("id"), type = $section.data("type") if ($title.length && ! $title.val()) { alert("Please enter a title") @@ -65,8 +66,14 @@ var OKAdmin = function(){ return } - var slug = slugify( $title.val() ) - $id.val( slug ) + // TODO: pass through whether this page is static + if (type === "page" && (id == "contact" || id == "about")) { + ; + } + else { + var slug = slugify( $title.val() ) + $id.val( slug ) + } $(".image-element").each(function(index){ $(this).find("input,textarea").each(function(){ diff --git a/themes/okadmin/templates/index.liquid b/themes/okadmin/templates/index.liquid index 330ed89..d25100f 100644 --- a/themes/okadmin/templates/index.liquid +++ b/themes/okadmin/templates/index.liquid @@ -16,7 +16,7 @@
    {% for data in resource.data %}
  1. - {{data.id}} + {{data.title}}
  2. {% endfor %} diff --git a/themes/okadmin/templates/resource.liquid b/themes/okadmin/templates/resource.liquid index abc59e9..aa3efe0 100644 --- a/themes/okadmin/templates/resource.liquid +++ b/themes/okadmin/templates/resource.liquid @@ -6,8 +6,8 @@ Back -
    -

    EDIT {{ resource.type }} '{{ resource.id }}'

    +
    +

    EDIT {{ resource.type }} '{{ resource.spec.title.value }}'

    {% include 'partials/inputs' %} -- cgit v1.2.3-70-g09d2