81 lines
2.1 KiB
HTML
81 lines
2.1 KiB
HTML
{% extends "main_django.html" %}
|
|
{% load compressed %}{% load sekizai_tags i18n microsite %}{% load url from future %}{% load staticfiles %}
|
|
|
|
{% block title %}<title>{% block pagetitle %}{% endblock %} | {% trans "Wiki" %} | {% platform_name %}</title>{% endblock %}
|
|
|
|
{% block headextra %}
|
|
{% compressed_css 'course' %}
|
|
|
|
<script type="text/javascript">
|
|
function ajaxError(){}
|
|
|
|
$.ajaxSetup({
|
|
timeout: 7000,
|
|
cache: false,
|
|
error: function(e, xhr, settings, exception) {
|
|
ajaxError();
|
|
}
|
|
});
|
|
|
|
function jsonWrapper(url, callback) {
|
|
$.getJSON(url, function(data) {
|
|
if (data == null) {
|
|
ajaxError();
|
|
} else {
|
|
callback(data);
|
|
}
|
|
});
|
|
}
|
|
</script>
|
|
|
|
|
|
{% addtoblock 'js' %}
|
|
{% comment %} These scripts load at the bottom of the body {% endcomment %}
|
|
<script>
|
|
window.onload = add_schematic_handler(window.onload);
|
|
</script>
|
|
|
|
<script src="{% static 'js/bootstrap-alert.js' %}"></script>
|
|
<script src="{% static 'js/bootstrap-collapse.js' %}"></script>
|
|
<script src="{% static 'js/bootstrap-modal.js' %}"></script>
|
|
|
|
{% with mathjax_mode='wiki' %}
|
|
{% include "mathjax_include.html" %}
|
|
{% endwith %}
|
|
{% endaddtoblock %}
|
|
|
|
{% endblock %}
|
|
|
|
{% block nav_skip %}#wiki-content{% endblock %}
|
|
|
|
{% block body %}
|
|
{% if request.course %}
|
|
{% with course=request.course %}
|
|
{% include "courseware/course_navigation.html" with active_page_context="wiki" %}
|
|
{% endwith %}
|
|
{% endif %}
|
|
|
|
<section class="container wiki {{ selected_tab }}" id="wiki-content">
|
|
<div class="wiki-wrapper">
|
|
{% block wiki_body %}
|
|
|
|
{% block wiki_breadcrumbs %}{% endblock %}
|
|
|
|
{% if messages %}
|
|
{% for message in messages %}
|
|
<div class="alert alert-{{ message.tags }}">
|
|
<a class="close" data-dismiss="alert" href="#">×</a>
|
|
{{ message }}
|
|
</div>
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
{% block wiki_contents %}{% endblock %}
|
|
|
|
{% endblock %}
|
|
</div>
|
|
|
|
</section>
|
|
|
|
{% endblock %}
|