Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix batch manager plugin header menu display #68

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
menublock_batch_down.tpl
  • Loading branch information
tjw1184 authored Jun 24, 2017
commit c3cd2f56426b329016a95c05c71cff573b667bf2
8 changes: 8 additions & 0 deletions template/menublock_batch_down.tpl
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">{$block->get_title()}<span class="caret"></span></a>
<ul class="dropdown-menu" role="menu">
{foreach from=$block->data item=link}
<li><a href="{$link.URL}" title="{$link.TITLE}"{if isset($link.REL)} {$link.REL}{/if}>{$link.NAME} [{$link.COUNT}]</a></li>
{/foreach}
</ul>
</li>