{% extends "base.html" %}
{% block container %}
{% if current_user.rank.at_least(current_user.rank.APPROVER) %}
{% endif %}
{% if not current_user.rank.at_least(current_user.rank.APPROVER) %}
{{ self.title() }}
{% endif %}
{{ self.content() }}
{% endblock %}