Skip to content
This repository has been archived by the owner on Jan 8, 2020. It is now read-only.

Commit

Permalink
#51 - Template rendering throws exception
Browse files Browse the repository at this point in the history
Add request to footer rendering
  • Loading branch information
Jurij Cherepanov committed Nov 18, 2016
1 parent 7b94c6c commit 8e1497b
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion kafka/src/kafka/templates/cluster.mako
Original file line number Diff line number Diff line change
Expand Up @@ -266,4 +266,4 @@ ${commonheader("Kafka > %s" % (cluster['cluster']['nice_name']), app_name, user)
</div>
</div>
</div>
${commonfooter(messages) | n,unicode}
${commonfooter(request, messages) | n,unicode}
2 changes: 1 addition & 1 deletion kafka/src/kafka/templates/consumer_group.mako
Original file line number Diff line number Diff line change
Expand Up @@ -226,4 +226,4 @@
</div>
</div>
</div>
${commonfooter(messages) | n,unicode}
${commonfooter(request, messages) | n,unicode}
2 changes: 1 addition & 1 deletion kafka/src/kafka/templates/consumer_groups.mako
Original file line number Diff line number Diff line change
Expand Up @@ -142,4 +142,4 @@ ${commonheader("%s > Consumer Groups" % (cluster['nice_name']), app_name, user)
</div>
</div>
</div>
${commonfooter(messages) | n,unicode}
${commonfooter(request, messages) | n,unicode}
2 changes: 1 addition & 1 deletion kafka/src/kafka/templates/dashboard.mako
Original file line number Diff line number Diff line change
Expand Up @@ -794,4 +794,4 @@ ${ graphsHUE.import_charts() }
</div>
</div>
</div>
${commonfooter(messages) | n,unicode}
${commonfooter(request, messages) | n,unicode}
2 changes: 1 addition & 1 deletion kafka/src/kafka/templates/index.mako
Original file line number Diff line number Diff line change
Expand Up @@ -287,4 +287,4 @@ ${commonheader("Topology", app_name, user) | n,unicode}
</div>
</div>
% endfor
${commonfooter(messages) | n,unicode}
${commonfooter(request, messages) | n,unicode}
2 changes: 1 addition & 1 deletion kafka/src/kafka/templates/system_tools.mako
Original file line number Diff line number Diff line change
Expand Up @@ -434,4 +434,4 @@ ${commonheader("SystemTools", app_name, user) | n,unicode}
</div>
</div>
</div>
${commonfooter(messages) | n,unicode}
${commonfooter(request, messages) | n,unicode}
2 changes: 1 addition & 1 deletion kafka/src/kafka/templates/topics.mako
Original file line number Diff line number Diff line change
Expand Up @@ -222,4 +222,4 @@ ${commonheader("%s > Topics" % (cluster['nice_name']), app_name, user) | n,unico
</div>
</div>
</div>
${commonfooter(messages) | n,unicode}
${commonfooter(request, messages) | n,unicode}

0 comments on commit 8e1497b

Please sign in to comment.