Hi all,
Is there a way in any current or future Review Board release to disable the “Ship it” menu item? By disable I mean hide it, don’t display it, or keep it in the menu bar and just grey it out.
Terry
{% load i18n %}
{% if request.user.is_authenticated %}
<li class="primary"><a id="review-link" href="#">{% trans "Review" %}</a></li>
<li class="primary"><a id="shipit-link" href="#">{% trans "Ship It!" %}</a></li>
{% endif %}{% load i18n %}
{% if request.user.is_authenticated %}
<li class="primary"><a id="review-link" href="#">{% trans "Review" %}</a></li>
{% endif %}
{% if request.user.pk != review_request.submitter_id %}
<li class="primary"><a id="shipit-link" href="#">{% trans "Ship It!" %}</a></li>
{% endif %}--
Supercharge your Review Board with Power Pack: https://www.reviewboard.org/powerpack/
Want us to host Review Board for you? Check out RBCommons: https://rbcommons.com/
Happy user? Let us know! https://www.reviewboard.org/users/
---
You received this message because you are subscribed to the Google Groups "Review Board Community" group.
To unsubscribe from this group and stop receiving emails from it, send an email to reviewboard+unsubscribe@googlegroups.com.