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

Remove bootstrap and old-style staticfiles template tags to make it executable

parent e201434b
Branches merge
No related tags found
No related merge requests found
{# -*- engine:django -*- #}
{% extends "core/base.html" %}
{% load bootstrap4 i18n %}
{% block bootstrap4_extra_head %}
{{ block.super }}
{{ edit_substitution_form.media.css }}
{% endblock %}
{% block bootstrap4_extra_script %}
{{ block.super }}
{{ edit_substitution_form.media.js }}
{% endblock %}
{% block bootstrap4_title %}{% blocktrans %}Edit substitution{% endblocktrans %} - {{ block.super }}{% endblock %}
{% load i18n %}
{% block page_title %}{% blocktrans %}Edit substitution{% endblocktrans %}{% endblock %}
......
{# -*- engine:django -*- #}
{% extends "core/turnable.html" %}
{% load bootstrap4 i18n %}
{% load i18n %}
{% load render_table from django_tables2 %}
{% block bootstrap4_title %}{% blocktrans %}Lessons{% endblocktrans %} - {{ block.super }}{% endblock %}
{% block current_content %}
{% render_table lessons_table %}
......
{# -*- engine:django -*- #}
{% extends "core/turnable.html" %}
{% load bootstrap4 i18n %}
{% load i18n %}
{% load render_table from django_tables2 %}
{% block bootstrap4_title %}{% blocktrans %}Substitutions{% endblocktrans %} - {{ block.super }}{% endblock %}
{% block current_content %}
{% render_table substitutions_table %}
......
{# -*- engine:django -*- #}
{% extends "core/turnable.html" %}
{% load bootstrap4 data_helpers i18n staticfiles %}
{% load data_helpers i18n static %}
{% block bootstrap4_extra_head %}
{{ block.super }}
<link rel="stylesheet" href="{% static 'css/chronos/timetable.css' %}" />
{{ select_form.media.css }}
{% endblock %}
{% block bootstrap4_extra_script %}
{{ block.super }}
{{ select_form.media.js }}
{% endblock %}
{% block bootstrap4_title %}{% blocktrans %}Timetable{% endblocktrans %} - {{ block.super }}{% endblock %}
{% block current_content %}
<form method="get">
......
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