Files
edx-platform/lms/templates/wiki/includes/breadcrumbs.html
2012-08-20 16:24:12 -04:00

39 lines
1.3 KiB
HTML

## mako
<%! from django.core.urlresolvers import reverse %>
%if urlpath is not Undefined and urlpath:
<header>
<ul class="breadcrumb pull-left" class="">
<%
# The create button links to the highest ancestor we have edit priveleges to
create_article_root = None
%>
%for ancestor in urlpath.cached_ancestors:
<li><a href="${reverse('wiki:get', kwargs={'path' : ancestor.path})}">${ancestor.article.current_revision.title}</a></li>
<%
if not create_article_root and ancestor.article.can_write(user):
create_article_root = ancestor
%>
%endfor
<li class="active"><a href="${reverse('wiki:get', kwargs={'path' : urlpath.path})}">${article.current_revision.title}</a></li>
<%
if not create_article_root and urlpath.article.can_write(user):
create_article_root = urlpath
%>
</ul>
<div class="global-functions pull-right">
<!-- <form class="search-wiki pull-left">
<input type="search" placeholder="search wiki" />
</form> -->
%if create_article_root:
<a class="add-article-btn btn pull-left" href="${reverse('wiki:create', kwargs={'path' : create_article_root.path})}" style="padding: 7px;">
<span class="icon-plus"></span>
Add article
</a>
%endif
</div>
</header>
%endif