diff options
| author | stone <jules+okfprojz@okfoc.us> | 2017-02-18 19:59:09 -0500 |
|---|---|---|
| committer | stone <jules+okfprojz@okfoc.us> | 2017-02-18 19:59:09 -0500 |
| commit | 794bc930903a836329aff47481d109df10f81069 (patch) | |
| tree | 160499d95dac5d1df01b45490b735d2b60e814e1 /lib/okpush/templates/partials/flash.liquid | |
| parent | 765527e34208a6e1b83f51eba4a32aa5c239fbc7 (diff) | |
| parent | cf85cc2b75b9c3ead3a693b6fa0feeca5b9e70ba (diff) | |
Merge branch 'cms' of ghghgh.us:stone-island into cms
Diffstat (limited to 'lib/okpush/templates/partials/flash.liquid')
| -rw-r--r-- | lib/okpush/templates/partials/flash.liquid | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/okpush/templates/partials/flash.liquid b/lib/okpush/templates/partials/flash.liquid new file mode 100644 index 00000000..e51a86b7 --- /dev/null +++ b/lib/okpush/templates/partials/flash.liquid @@ -0,0 +1,20 @@ +{% if success.length > 0 %} +<div class="success"> + <div class="message">Changes saved.</div> + <!-- + {% for info in success %} + <div class="message">{{info.action}}</div> + {% endfor %} + --> +</div> +{% endif %} + +{% if errors.length > 0 %} +<div class="errors"> + {% for error in errors %} + <div class="error"> + <div class="message">{{error.message}}</div> + </div> + {% endfor %} +</div> +{% endif %}
\ No newline at end of file |
