Skip to content

Commit 650995e

Browse files
committed
Small bugs and tweaks
* Makefile: fix target name typo * about.html: needs its own customized welcome * main.html, welcome.html: move "do not show" into the correct "div"
1 parent 180cee2 commit 650995e

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ runserver:
5151

5252
#: Run Django-based server in testserver mode. Use environment variable "o" for manage options
5353
testserver:
54-
$(PYTHON) mathics_django/manage.py tesetserver $o
54+
$(PYTHON) mathics_django/manage.py testserver $o
5555

5656
check: djangotest doctest
5757

mathics_django/web/templates/about.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ <h1> Version information </h1>
5656
See the <a href="/doc">documentation</a> for a full list of supported functions.
5757

5858
<!-- {% include 'welcome.html' %} -->
59+
</div>
5960

6061
{% endblock main %}
6162
{% endblock html_body %}

mathics_django/web/templates/main.html

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
<div id="queriesContainer"></div>
88

99
{% include 'welcome.html' %}
10-
<div style="position:absolute;right:0;bottom:-2.8em;">
11-
<p style="text-align:right;color:#3f3f3f;"><label><input type="checkbox" id="hideStartupMsg" />Do not show on startup.</label></p>
1210
</div>
1311

1412

mathics_django/web/templates/welcome.html

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,9 @@
88
<!--<p><small>This box will disappear as soon as you submit your first query.</small></p>-->
99
</p>
1010
<p>Mathics uses <a href="http://www.mathjax.org/" target="_blank">MathJax</a> to display beautiful math.
11-
For further information about the project visit <a href="https://mathics.org" target="_blank">the home page</a>.</p>
11+
For further information about the project visit <a href="https://mathics.org" target="_blank">the home page</a>.</p>
12+
13+
<div style="position:absolute;right:0;bottom:-2.8em;">
14+
<p style="text-align:right;color:#3f3f3f;"><label><input type="checkbox" id="hideStartupMsg" />Do not show on startup.</label></p>
15+
1216
</div>

0 commit comments

Comments
 (0)