12 lines
422 B
HTML
12 lines
422 B
HTML
<%inherit file="../courseware/course_navigation.html" />
|
|
<%!
|
|
from django.utils.translation import ugettext as _
|
|
from django_comment_client.permissions import has_permission
|
|
%>
|
|
|
|
<%block name="extratabs">
|
|
% if has_permission(user, 'create_thread', course.id):
|
|
<li class="right"><a href="#" class="new-post-btn" role="button"><span class="icon fa fa-edit new-post-icon"></span>${_("New Post")}</a></li>
|
|
% endif
|
|
</%block>
|