Skip to content
Snippets Groups Projects
Verified Commit 2a84050c authored by Jonathan Weth's avatar Jonathan Weth :keyboard:
Browse files

Fix order of has_perm and perm check in lesson template

parent 451cdb33
No related branches found
No related tags found
1 merge request!49Resolve "Add rules and permissions"
Pipeline #2741 passed
...@@ -24,6 +24,10 @@ ...@@ -24,6 +24,10 @@
{% endblock %} {% endblock %}
{% block content %} {% block content %}
{% has_perm "alsijil.view_lessondocumentation" user lesson_period as can_view_lesson_documentation %}
{% has_perm "alsijil.edit_lessondocumentation" user lesson_period as can_edit_lesson_documentation %}
{% has_perm "alsijil.edit_personalnote" user lesson_period as can_edit_personalnote %}
<form method="post"> <form method="post">
<div class="row"> <div class="row">
<div class="col s12"> <div class="col s12">
...@@ -41,8 +45,7 @@ ...@@ -41,8 +45,7 @@
<span class="card-title"> <span class="card-title">
{% blocktrans %}Lesson documentation{% endblocktrans %} {% blocktrans %}Lesson documentation{% endblocktrans %}
</span> </span>
{% has_perm "alsijil.view_lessondocumentation" user lesson_period as can_view_lesson_documentation %}
{% has_perm "alsijil.edit_lessondocumentation" user lesson_period as can_edit_lesson_documentation %}
{% if can_edit_lesson_documentation %} {% if can_edit_lesson_documentation %}
{% form form=lesson_documentation_form %}{% endform %} {% form form=lesson_documentation_form %}{% endform %}
{% elif can_view_lesson_documentation %} {% elif can_view_lesson_documentation %}
...@@ -90,7 +93,6 @@ ...@@ -90,7 +93,6 @@
<span class="card-title"> <span class="card-title">
{% blocktrans %}Personal notes{% endblocktrans %} {% blocktrans %}Personal notes{% endblocktrans %}
</span> </span>
{% has_perm "alsijil.edit_personalnote" user lesson_period as can_edit_personalnote %}
{% form form=personal_note_formset.management_form %}{% endform %} {% form form=personal_note_formset.management_form %}{% endform %}
<table class="striped responsive-table alsijil-table"> <table class="striped responsive-table alsijil-table">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment