diff --git a/src/lib/elements/element_data_store_v2.svelte b/src/lib/elements/element_data_store_v2.svelte deleted file mode 100644 index 36a28c2f..00000000 --- a/src/lib/elements/element_data_store_v2.svelte +++ /dev/null @@ -1,810 +0,0 @@ - - -
- {#if ae_ds_tmp} - {#if debug || $ae_loc.debug == 'debug'} -
-    id: {ae_ds_tmp.id},
-    code: {ae_ds_tmp.code},
-    type: {ae_ds_tmp.type},
-    for_type: {ae_ds_tmp.for_type},
-    for_id: {ae_ds_tmp.for_id},
-    access_read: {ae_ds_tmp.access_read},
-    access_write: {ae_ds_tmp.access_write},
-    access_delete: {ae_ds_tmp.access_delete},
-    name: {ae_ds_tmp.name},
-    html: {ae_ds_tmp.html},
-    json: {ae_ds_tmp.json},
-    md: {ae_ds_tmp.md},
-    text: {ae_ds_tmp.text},
-    updated_on: {ae_ds_tmp.updated_on},
-    
- {/if} - - -
- - -
- {#if $ae_loc.trusted_access} - - {/if} - {#if $ae_loc.manager_access} - - - - {/if} -
- -
- {#if $ae_loc.trusted_access} - - {/if} -
- -
- {#if $ae_loc.manager_access} - - - - - - - {:else} - Code: {ae_ds_tmp.code} - Type: {ae_ds_tmp.type} - {/if} -
- -
- {#if ae_ds_tmp.type == 'html' || ae_ds_tmp.type == null} - - {:else if ae_ds_tmp.type == 'sql'} - - {:else if ae_ds_tmp.type == 'text'} - - {/if} -
- -
- - - - - {#await ds_submit_results} - - {:then ds_submit_results} - {#if ds_submit_results} -
- - Saved -
- {/if} - {/await} - -
- submit: {$ae_sess.ds.submit_status} - create: {$ae_sess.ds.create_status} - update: {$ae_sess.ds.update_status} -
-
-
- - {#snippet footer()} -
- -
- {/snippet} -
- - {#if ae_ds_tmp.type == 'html' && ae_ds_tmp.html} - {@html ae_ds_tmp.html} - {:else if ae_ds_tmp.type == 'html'} - {#if $ae_loc.manager_access} - No HTML found! Is the data store type correct? - {/if} - {/if} - - {#if ae_ds_tmp.type == 'text' && ae_ds_tmp.text} - {ae_ds_tmp.text} - {:else if ae_ds_tmp.type == 'text'} - {#if $ae_loc.manager_access} - No text found! Is the data store type correct? - {/if} - {/if} - - - {/if} - - {#await ds_get_results} - - {/await} -
- - \ No newline at end of file