From 113fbe98b9a0f8c438d3b1f1597b199f075a862f Mon Sep 17 00:00:00 2001 From: Lorin Werthen Date: Fri, 3 Apr 2015 18:41:44 +0200 Subject: [PATCH] find . -type f -exec sed -i s/James/Haldis/g {} \; --- README.md | 4 ++-- app/admin.py | 2 +- app/templates/about.html | 2 +- app/templates/home.html | 2 +- app/templates/layout.html | 6 +++--- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 9b3f709..2455575 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ -James +Haldis ======= -James is your friendly neighbourhood servant. He exists so lazy fucks like you and me don't need to keep tabs of who is ordering what from where. +Haldis is your friendly neighbourhood servant. He exists so lazy fucks like you and me don't need to keep tabs of who is ordering what from where. Start an order and let people add items with a simple mouse-click! No more calculating prices and making lists! Be lazier today! diff --git a/app/admin.py b/app/admin.py index 47629ab..9dfb62a 100644 --- a/app/admin.py +++ b/app/admin.py @@ -27,7 +27,7 @@ class LocationAdminModel(ModelBaseView): form_columns = ('name', 'address', 'website') -admin = Admin(app, name='James', url='/admin', template_mode='bootstrap3') +admin = Admin(app, name='Haldis', url='/admin', template_mode='bootstrap3') admin.add_view(UserAdminModel(User, db.session)) diff --git a/app/templates/about.html b/app/templates/about.html index 130501f..8e6e333 100644 --- a/app/templates/about.html +++ b/app/templates/about.html @@ -3,5 +3,5 @@ {% block container %}

About

-

This is James' about page. Doesn't he look good? Oh stop, you're making him blush.

+

This is Haldis' about page. Doesn't he look good? Oh stop, you're making him blush.

{% endblock %} diff --git a/app/templates/home.html b/app/templates/home.html index 0f2e9da..315ccea 100644 --- a/app/templates/home.html +++ b/app/templates/home.html @@ -6,7 +6,7 @@ {% block container %}
-

Hi, I'm James

+

Hi, I'm Haldis

What would you like to eat, sir?

diff --git a/app/templates/layout.html b/app/templates/layout.html index 2eaf910..e8eeb6e 100644 --- a/app/templates/layout.html +++ b/app/templates/layout.html @@ -13,7 +13,7 @@ {% set active_page = active_page|default('index') -%} {% block title %} - James - {{ active_page|capitalize }} + Haldis - {{ active_page|capitalize }} {% endblock %} {% block styles %} @@ -72,8 +72,8 @@
Made with ❤ by Zeus WPI
- - + +
{%- endblock %}