diff --git a/app/models/concerns/exportable_plan.rb b/app/models/concerns/exportable_plan.rb
index c55aa2f..b9254b8 100644
--- a/app/models/concerns/exportable_plan.rb
+++ b/app/models/concerns/exportable_plan.rb
@@ -44,7 +44,7 @@
hash = coversheet ? prepare_coversheet : {}
template = Template.includes(phases: { sections: {questions: :question_format } }).
joins(phases: { sections: { questions: :question_format } }).
- where(id: self.template_id).first
+ where(id: self.template_id).order('sections.number', 'questions.number').first
hash[:title] = self.title
hash[:answers] = self.answers
diff --git a/app/views/notes/_list.html.erb b/app/views/notes/_list.html.erb
index 73132f3..1650112 100644
--- a/app/views/notes/_list.html.erb
+++ b/app/views/notes/_list.html.erb
@@ -8,7 +8,7 @@