Skip to content

Commit

Permalink
use base template outside scheduler
Browse files Browse the repository at this point in the history
  • Loading branch information
llazzaro committed Jul 20, 2015
1 parent 872f012 commit d22ce51
Show file tree
Hide file tree
Showing 12 changed files with 11 additions and 29 deletions.
18 changes: 0 additions & 18 deletions schedule/templates/schedule/base.html

This file was deleted.

2 changes: 1 addition & 1 deletion schedule/templates/schedule/calendar.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "schedule/base.html" %}
{% extends "base.html" %}
{% load i18n %}
{% load scheduletags i18n %}

Expand Down
2 changes: 1 addition & 1 deletion schedule/templates/schedule/calendar_compact_month.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "schedule/base.html" %}
{% extends "base.html" %}
{% load scheduletags %}
{% block body %}
<h1>{{ calendar.name }}</h1>
Expand Down
2 changes: 1 addition & 1 deletion schedule/templates/schedule/calendar_day.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "schedule/base.html" %}
{% extends "base.html" %}
{% load scheduletags i18n %}

{% block body %}
Expand Down
2 changes: 1 addition & 1 deletion schedule/templates/schedule/calendar_list.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "schedule/base.html" %}
{% extends "base.html" %}
{% load i18n %}
{% block head_title %}{% trans "Available Calendars" %}{% endblock %}
{% block body %}
Expand Down
2 changes: 1 addition & 1 deletion schedule/templates/schedule/calendar_month.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "schedule/base.html" %}
{% extends "base.html" %}
{% load scheduletags i18n %}

{% block body %}
Expand Down
2 changes: 1 addition & 1 deletion schedule/templates/schedule/calendar_tri_month.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "schedule/base.html" %}
{% extends "base.html" %}
{% load scheduletags i18n %}
{% block body %}
<div class="tablewrapper">
Expand Down
2 changes: 1 addition & 1 deletion schedule/templates/schedule/calendar_week.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "schedule/base.html" %}
{% extends "base.html" %}
{% load scheduletags i18n %}

{% block body %}
Expand Down
2 changes: 1 addition & 1 deletion schedule/templates/schedule/calendar_year.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "schedule/base.html" %}
{% extends "base.html" %}
{% load scheduletags i18n %}
{% block body %}
<div class="tablewrapper">
Expand Down
2 changes: 1 addition & 1 deletion schedule/templates/schedule/cancel_occurrence.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "schedule/base.html" %}
{% extends "base.html" %}
{% load i18n %}

{% block body %}
Expand Down
2 changes: 1 addition & 1 deletion schedule/templates/schedule/delete_event.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "schedule/base.html" %}
{% extends "base.html" %}
{% load i18n %}

{% block body %}
Expand Down
2 changes: 1 addition & 1 deletion schedule/templates/schedule/event.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "schedule/base.html" %}
{% extends "base.html" %}
{% load i18n staticfiles scheduletags %}

{% block body %}
Expand Down

0 comments on commit d22ce51

Please sign in to comment.