Skip to content

Commit

Permalink
Fix templates
Browse files Browse the repository at this point in the history
  • Loading branch information
kmmbvnr committed Nov 4, 2014
1 parent 2934ffe commit f47ef72
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 10 deletions.
2 changes: 2 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,8 @@ To make the above code work just put the following flow definition in `flows.py`
.. code-block:: python
from django.conf.urls import patterns, url, include
from viewflow import views as viewflow
from .helloworld.flows import HelloWorldFlow
urlpatterns = patterns('',
url(r'^helloworld/', include([
Expand Down
2 changes: 1 addition & 1 deletion viewflow/templates/viewflow/flow/process_details.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends 'viewflow/base_site.html' %}
{% extends 'viewflow/base.html' %}
{% load viewflow %}

{% block title %}{{ block.super}} | {{ flow_cls.process_title }}{% endblock %}
Expand Down
2 changes: 1 addition & 1 deletion viewflow/templates/viewflow/flow/process_list.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends 'viewflow/base_site.html' %}
{% extends 'viewflow/base.html' %}
{% load viewflow %}

{% block title %}{{ block.super}} | {{ flow_cls.process_title }}{% endblock %}
Expand Down
2 changes: 1 addition & 1 deletion viewflow/templates/viewflow/flow/queue.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends 'viewflow/base_site.html' %}
{% extends 'viewflow/base.html' %}
{% load viewflow %}

{% block title %}{{ block.super}} | {{ flow_cls.process_title }}{% endblock %}
Expand Down
2 changes: 1 addition & 1 deletion viewflow/templates/viewflow/flow/start.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends 'viewflow/base_site.html' %}
{% extends 'viewflow/base.html' %}

{% block title %}{{ block.super}} | {{ activation.flow_cls.process_title }}{% endblock %}

Expand Down
2 changes: 1 addition & 1 deletion viewflow/templates/viewflow/flow/task.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends 'viewflow/base_site.html' %}
{% extends 'viewflow/base.html' %}
{% load viewflow %}

{% block content %}
Expand Down
2 changes: 1 addition & 1 deletion viewflow/templates/viewflow/flow/task_assign.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends 'viewflow/base_site.html' %}
{% extends 'viewflow/base.html' %}
{% load viewflow %}

{% block content %}
Expand Down
2 changes: 1 addition & 1 deletion viewflow/templates/viewflow/flow/task_details.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends 'viewflow/base_site.html' %}
{% extends 'viewflow/base.html' %}
{% load viewflow %}

{% block content %}
Expand Down
2 changes: 1 addition & 1 deletion viewflow/templates/viewflow/flow/task_list.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends 'viewflow/base_site.html' %}
{% extends 'viewflow/base.html' %}
{% load viewflow %}

{% block title %}{{ block.super}} | {{ flow_cls.process_title }}{% endblock %}
Expand Down
2 changes: 1 addition & 1 deletion viewflow/templates/viewflow/site_queue.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends 'viewflow/base_site.html' %}
{% extends 'viewflow/base.html' %}
{% load viewflow %}

{% block title %}{{ block.super}} | All tasks{% endblock %}
Expand Down
2 changes: 1 addition & 1 deletion viewflow/templates/viewflow/site_tasks.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends 'viewflow/base_site.html' %}
{% extends 'viewflow/base.html' %}
{% load viewflow %}

{% block title %}{{ block.super}} | All tasks{% endblock %}
Expand Down

0 comments on commit f47ef72

Please sign in to comment.