Commit 8d8220746a7446d557013cebd10aa426a834588a

Authored by nbm
1 parent 14b2c542

Remove unused template.


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@4336 c91229c3-7414-0410-bfa2-8a42b809f60b
templates/ktcore/handle_conditional.smarty deleted
1   -<html>
2   -<head><title>Conditional Metadata Test</title>
3   -</head>
4   -<body>
5   - <p>This is test of the various configurations for the conditional metadata backend. Please press submit. Your current form
6   - will be deleted, and the backend will present new fields for you to fill in.</p>
7   - <form>
8   -
9   -
10   -
11   - <input type="hidden" name="fieldset_id" value="{$fieldset}" />
12   -
13   - {foreach item=oldFieldVal key=oldFieldId from=$oldfields}
14   - <input type="hidden" name="fields[]" value="{$oldFieldId}" />
15   - <input type="hidden" name="conditional_field_{$oldFieldId}" value="{$oldFieldVal}" />
16   - {/foreach}
17   - {foreach item=fieldOutput key=field_id from=$fieldsToRender}
18   - <input type="hidden" name="fields[]" value="{$field_id}" />
19   - <select name="conditional_field_{$field_id}">
20   - {foreach item=metadata from=$fieldOutput}
21   - <option value="{$metadata.val}">{$metadata.name}</option>
22   - {/foreach}
23   - </select>
24   - {/foreach}
25   -
26   -
27   - <input type="submit" />
28   - </form>
29   -</body>
30   -</html>