From d5f430d3e1e2b274d8d8f744251e8b6b4b72ebd9 Mon Sep 17 00:00:00 2001 From: luxagraf Date: Sat, 5 Jan 2019 09:50:21 -0600 Subject: changed to custom modal, added saving animation for note editing. --- design/templates/base.html | 12 +++++++++--- .../templates/django_registration/activation_complete.html | 5 ++--- .../templates/django_registration/registration_complete.html | 2 +- design/templates/notes/notebook_detail.html | 5 ++++- design/templates/notes/notes_detail.html | 2 +- design/templates/notes/notes_list.html | 9 +++++++++ design/templates/pages/page.html | 2 +- 7 files changed, 27 insertions(+), 10 deletions(-) (limited to 'design/templates') diff --git a/design/templates/base.html b/design/templates/base.html index fc369ae..adcf599 100644 --- a/design/templates/base.html +++ b/design/templates/base.html @@ -29,11 +29,17 @@
+
{%else%}
  • Home
  • {%endif%} diff --git a/design/templates/django_registration/activation_complete.html b/design/templates/django_registration/activation_complete.html index 914be51..d83317a 100644 --- a/design/templates/django_registration/activation_complete.html +++ b/design/templates/django_registration/activation_complete.html @@ -1,8 +1,7 @@ - {% extends 'base.html' %} {% block content %} -
    +

    Your account is now active.

    -

    Login and get started! +

    Login and get started!

    {% endblock %} diff --git a/design/templates/django_registration/registration_complete.html b/design/templates/django_registration/registration_complete.html index e9d0610..59677ce 100644 --- a/design/templates/django_registration/registration_complete.html +++ b/design/templates/django_registration/registration_complete.html @@ -1,6 +1,6 @@ {% extends 'base.html' %} {% block content %} -
    +

    Thanks for signing up.

    Please check your email for a link to confirm you new account.

    diff --git a/design/templates/notes/notebook_detail.html b/design/templates/notes/notebook_detail.html index 73c13ab..37c8f8a 100644 --- a/design/templates/notes/notebook_detail.html +++ b/design/templates/notes/notebook_detail.html @@ -8,9 +8,9 @@
    + {% if object.name != 'Trash'%}
    {% csrf_token %} {{ form.non_field_errors }} -
    {% for field in form %}{% if field.name == 'color_rgb' %}
    @@ -28,6 +28,9 @@ + {%else%} +

    {{object.name}}

    + {%endif%}
    diff --git a/design/templates/notes/notes_detail.html b/design/templates/notes/notes_detail.html index edf45e7..cce13b7 100644 --- a/design/templates/notes/notes_detail.html +++ b/design/templates/notes/notes_detail.html @@ -49,8 +49,8 @@

    {{object.title}}

    {% if object.body_html %}{{object.body_html|safe}}{%else%}{{object.body_text}}{%endif%}
    +
    -