Merged [2965] from peter.musgrave@magorcorp.com:

Tracker 550 - Don't show AD/Secretariat links for Last Call etc. if they will 404  Fixes #550
 - Legacy-Id: 2973
Note: SVN reference [2965] has been migrated to Git commit e2f01ceb5b494ac3e08d66bca89f61eecc90a201
This commit is contained in:
Henrik Levkowetz 2011-03-26 16:53:11 +00:00
parent 6ac0c83184
commit 662514fe22
2 changed files with 4 additions and 0 deletions

View file

@ -86,9 +86,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
</div>
{% if user|in_group:"Area_Director,Secretariat" %}
<div>
{% if doc.in_ietf_process %}
<a href="{% url doc_ballot_lastcall name=doc.draft_name %}">Last Call Text</a>
| <a href="{% url doc_ballot_writeupnotes name=doc.draft_name %}">Ballot Text</a>
| <a href="{% url doc_ballot_approvaltext name=doc.draft_name %}">Announcement Text</a>
{% endif %}
</div>
{% endif %}
{% endblock %}

View file

@ -83,9 +83,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
</div>
{% if user|in_group:"Area_Director,Secretariat" %}
<div>
{% if doc.in_ietf_process %}
<a href="{% url doc_ballot_lastcall name=doc.draft_name %}">Last Call Text</a>
| <a href="{% url doc_ballot_writeupnotes name=doc.draft_name %}">Ballot Text</a>
| <a href="{% url doc_ballot_approvaltext name=doc.draft_name %}">Announcement Text</a>
{% endif %}
</div>
{% endif %}
{% endblock %}