html indent fix
This commit is contained in:
parent
10831a44e9
commit
e4afc0fb0d
|
@ -9,10 +9,7 @@
|
||||||
<p>
|
<p>
|
||||||
<a class="btn btn-default btn-sm" href="{{ url_for('wiki.history', name=name) }}">Back to History</a>
|
<a class="btn btn-default btn-sm" href="{{ url_for('wiki.history', name=name) }}">Back to History</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
|
||||||
{{ diff|safe }}
|
{{ diff|safe }}
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
<a class="btn btn-default btn-sm" href="{{ url_for('wiki.history', name=name) }}">Back to History</a>
|
<a class="btn btn-default btn-sm" href="{{ url_for('wiki.history', name=name) }}">Back to History</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
|
@ -8,13 +8,13 @@
|
||||||
});
|
});
|
||||||
TogetherJSConfig_toolName = "Collaboration";
|
TogetherJSConfig_toolName = "Collaboration";
|
||||||
TogetherJSConfig_suppressJoinConfirmation = true;
|
TogetherJSConfig_suppressJoinConfirmation = true;
|
||||||
{% if session.get('user') %}
|
{% if current_user.is_authenticated() %}
|
||||||
TogetherJSConfig_getUserName = function () {
|
TogetherJSConfig_getUserName = function () {
|
||||||
return {{ session['user'].get('username')|tojson }};
|
return {{ current_user.username|tojson }};
|
||||||
};
|
};
|
||||||
|
|
||||||
TogetherJSConfig_getUserAvatar = function () {
|
TogetherJSConfig_getUserAvatar = function () {
|
||||||
return {{ session['user'].get('avatar')|tojson }};
|
return {{ current_user.avatar|tojson }};
|
||||||
};
|
};
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
@ -33,20 +33,6 @@
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block body %}
|
{% block body %}
|
||||||
{% block css %}
|
|
||||||
<style>
|
|
||||||
#main-body {
|
|
||||||
background: inherit;
|
|
||||||
border: inherit;
|
|
||||||
padding: 0;
|
|
||||||
-webkit-box-shadow: 0;
|
|
||||||
-moz-box-shadow: 0;
|
|
||||||
box-shadow: 0;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
{% endblock %}
|
|
||||||
|
|
||||||
|
|
||||||
<div id="app-wrap">
|
<div id="app-wrap">
|
||||||
<div id="app-controls" class="row">
|
<div id="app-controls" class="row">
|
||||||
<div class="col-xs-3">
|
<div class="col-xs-3">
|
||||||
|
|
Loading…
Reference in a new issue