-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add first view of application details for consultees view
- Loading branch information
1 parent
a532dfc
commit 4f3e8ee
Showing
12 changed files
with
234 additions
and
142 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -129,4 +129,4 @@ | |
<% end %> | ||
<% else %> | ||
<p class="govuk-body"><%= t(".no_digital_sitemap") %></p> | ||
<% end %> | ||
<% end %> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule bops-applicants
updated
8 files
+68 −5 | .github/workflows/deploy-environment.yml | |
+1 −1 | .github/workflows/linters.yml | |
+1 −1 | .github/workflows/testing.yml | |
+3 −3 | Dockerfile.production | |
+3 −3 | Gemfile.lock | |
+0 −19 | config/initializers/automigrate.rb | |
+1 −1 | docker-compose.yml | |
+4 −4 | docker/ruby/Dockerfile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
engines/bops_consultees/app/presenters/bops_consultees/planning_application_presenter.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# frozen_string_literal: true | ||
|
||
module BopsConsultees | ||
class PlanningApplicationPresenter | ||
include Presentable | ||
|
||
presents :planning_application | ||
|
||
include BopsCore::StatusPresenter | ||
|
||
def initialize(template, planning_application) | ||
@template = template | ||
@planning_application = planning_application | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.