Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix container-inside-container overflow issue. #4255

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -112,14 +112,12 @@ <h4 class="modal-title">{% trans "Export learner stats" %}</h4>
{% endblock buttons %}

{% block control_panel_content %}
<div class="container">
{# Coaches table #}
{% include "control_panel/partials/_coaches_table.html" %}
{# Coaches table #}
{% include "control_panel/partials/_coaches_table.html" %}

{# Groups table #}
{% include "control_panel/partials/_groups_table.html" %}
{# Groups table #}
{% include "control_panel/partials/_groups_table.html" %}

{# Students table #}
{% include "control_panel/partials/_students_table.html" %}
</div> <!-- End Container -->
{# Students table #}
{% include "control_panel/partials/_students_table.html" %}
{% endblock control_panel_content %}
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,9 @@
{% endblock buttons %}

{% block control_panel_content %}

<div class="container">
{# Facilities Section #}
{% include "control_panel/partials/_facility_table.html" %}

{# Device Section #}
{% include "control_panel/partials/_device_table.html" %}

</div> <!-- End container -->
{% endblock control_panel_content %}