blob: 61d6c8221de0e8d22287d6521a2fc82403479f82 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<form action="{$smarty.const.KERNEL_PKG_URI}admin/index.php?page=feed" method="POST">
<input type="hidden" name="page" value="{$smarty.request.page}" />
<div class="row">
<div class="span-4"> <h2>Content Description</h2> </div>
<div class="span-4"> <h2>Feed Verb</h2> </div>
<div class="span-4"> <h2>Remove Target Link</h2> </div>
</div>
{foreach from=$contentTypes item='type' key=contentTypeGuid}
<div class="row clear">
<div class="span-4">
{$contentTypeGuid}
</div>
<div class="span-4">
<input type="text" name="{$contentTypeGuid|lower}[conjugation_phrase]" value="{$type.conjugation_phrase}"/>{*replace and lower to comply with BW url param standards*}
</div>
<div class="span-4">
<input type="checkbox" name="{$contentTypeGuid|lower}[is_target_linked]" {if $type.is_target_linked == 'f'}checked='true'{/if} />
</div>
</div>
{/foreach}
<div class="row submit clear">
<input type="submit" name="store_feed" value="Submit" />
</div>
</form>
|