diff options
-rw-r--r-- | pytask/templates/base.html | 6 | ||||
-rw-r--r-- | pytask/templates/task/view.html | 2 |
2 files changed, 5 insertions, 3 deletions
diff --git a/pytask/templates/base.html b/pytask/templates/base.html index 1fc3db9..2923780 100644 --- a/pytask/templates/base.html +++ b/pytask/templates/base.html @@ -26,8 +26,10 @@ along with PyTask. If not, see <http://www.gnu.org/licenses/>. {% block title %}PyTasks{% endblock %} </title> - {% comment %}Load site wide CSS here. Additional styling must be - loaded in the block that follows{% endcomment %} + {% comment %} + Load site wide CSS here. Additional styling must be + loaded in the block that follows + {% endcomment %} <link rel=stylesheet href="/pytask/static/css/base.css" type="text/css" > <link type="text/css" href="/pytask/static/css/jquery/ui/cupertino/jquery-ui-1.8.9.custom.css" diff --git a/pytask/templates/task/view.html b/pytask/templates/task/view.html index bee0abf..ef54ad4 100644 --- a/pytask/templates/task/view.html +++ b/pytask/templates/task/view.html @@ -25,7 +25,7 @@ along with PyTask. If not, see <http://www.gnu.org/licenses/>. {% block title %} - {{task.title}} + {{ task.title }} {% endblock %} {% block content %} |