##// END OF EJS Templates
Extend the completion layout to use a third readlinelike option....
Extend the completion layout to use a third readlinelike option. The `display_completions_in_columns` thus becomes deprecated, and the Boolean is replaced by an Enum: `column`, `multicolumn`, `readlinelike` which give us more freedom to implement extra-layout later.

File last commit:

r11717:00cf7e3c
r22554:0668587b
Show More
layout.html
23 lines | 667 B | text/html | HtmlLexer
{% extends "!layout.html" %}
{% block rootrellink %}
<li><a href="http://ipython.org">home</a>|&nbsp;</li>
<li><a href="{{ pathto('search') }}">search</a>|&nbsp;</li>
<li><a href="{{ pathto('index') }}">documentation </a> &raquo;</li>
{% endblock %}
{% block relbar1 %}
<div style="background-color: white; text-align: left; padding: 10px 10px 15px 15px">
<a href="http://ipython.org/"><img src="{{
pathto("_static/logo.png", 1) }}" border="0" alt="IPython Documentation"/></a>
</div>
{{ super() }}
{% endblock %}
{# put the sidebar before the body #}
{% block sidebar1 %}{{ sidebar() }}{% endblock %}
{% block sidebar2 %}{% endblock %}