Browse Source

Remove back to dashboard from all dashbaord tabs

pull/160/head
Charles Shin 8 years ago
parent
commit
8e00655156
7 changed files with 28 additions and 3 deletions
  1. +4
    -3
      edivorce/apps/core/templates/base.html
  2. +4
    -0
      edivorce/apps/core/templates/dashboard/check_with_registry.html
  3. +4
    -0
      edivorce/apps/core/templates/dashboard/file_documents.html
  4. +4
    -0
      edivorce/apps/core/templates/dashboard/order_certificate.html
  5. +4
    -0
      edivorce/apps/core/templates/dashboard/print_form.html
  6. +4
    -0
      edivorce/apps/core/templates/dashboard/wait.html
  7. +4
    -0
      edivorce/apps/core/templates/overview.html

+ 4
- 3
edivorce/apps/core/templates/base.html View File

@ -67,12 +67,13 @@
<div class="container-fluid">
<div class="row">
<div class="col-md-5">
{% url 'overview' as overview_url %}
{% if request.bceid_user.is_authenticated and request.path != overview_url %}
<div class="mid_banner-dash"><a href="{{overview_url}}">
{% block backToDashboard %}
{% if request.bceid_user.is_authenticated %}
<div class="mid_banner-dash"><a href="{% url 'overview' %}">
<i class="fa fa-arrow-circle-o-left" aria-hidden="true"></i>Back to Dashboard</a>
</div>
{% endif %}
{% endblock %}
</div>
<div class="col-md-7">
{% block sidebarNav %}


+ 4
- 0
edivorce/apps/core/templates/dashboard/check_with_registry.html View File

@ -26,6 +26,10 @@
{% endblock %}
{% block backToDashboard %}
<!-- no back to dashboard -->
{% endblock %}
{% block formbuttons %}
<!-- no button -->
{% endblock %}


+ 4
- 0
edivorce/apps/core/templates/dashboard/file_documents.html View File

@ -22,6 +22,10 @@
{% endblock %}
{% block backToDashboard %}
<!-- no back to dashboard -->
{% endblock %}
{% block formbuttons %}
<!-- no button -->
{% endblock %}


+ 4
- 0
edivorce/apps/core/templates/dashboard/order_certificate.html View File

@ -20,6 +20,10 @@
</p>
{% endblock %}
{% block backToDashboard %}
<!-- no back to dashboard -->
{% endblock %}
{% block formbuttons %}
<!-- no button -->
{% endblock %}


+ 4
- 0
edivorce/apps/core/templates/dashboard/print_form.html View File

@ -170,6 +170,10 @@
{% endblock %}
{% block backToDashboard %}
<!-- no back to dashboard -->
{% endblock %}
{% block formbuttons %}
<!-- no button -->
{% endblock %}


+ 4
- 0
edivorce/apps/core/templates/dashboard/wait.html View File

@ -11,6 +11,10 @@
</p>
{% endblock %}
{% block backToDashboard %}
<!-- no back to dashboard -->
{% endblock %}
{% block formbuttons %}
<!-- no button -->
{% endblock %}


+ 4
- 0
edivorce/apps/core/templates/overview.html View File

@ -98,6 +98,10 @@
{% endblock %}
{% block backToDashboard %}
<!-- no back to dashboard -->
{% endblock %}
{% block formbuttons %}
<!-- no formbuttons -->
{% endblock %}


Loading…
Cancel
Save