Created
June 28, 2013 02:49
-
-
Save airways/5882120 to your computer and use it in GitHub Desktop.
One day...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ce:core:foreach in=beans} | |
<tr> | |
{ce:core:foreach in=loop_value} | |
{if loop_key == table_id} | |
<td>[{table_id}] {loop_key} = <a href="{cp_url}publish/edit/{type}/{loop_value}">{loop_value}</a></td> | |
{if:else} | |
{if loop_key == 'title'} | |
<td>title {loop_key} = <a href="{cp_url}publish/edit/{type}/{bean_id}">{loop_value}</a></td> | |
{if:else} | |
{if loop_key != 'loop_key' & loop_key != 'parent_id' & loop_key != 'bean_id'} | |
<td>{loop_key} = {ce:core:trunc len='150'}{loop_value}{/ce:core:trunc}</td> | |
{/if} | |
{/if} | |
{/if} | |
{/ce:core:foreach} | |
<td><a href="{cp_url}publish/delete/{type}/{bean_id}/" class="ce_confirm" data-prompt="Are you sure you want to delete '{title}'?">Delete</a></td> | |
</tr> | |
{/ce:core:foreach} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment