philomena/lib/philomena_web/templates/image/source_change/index.html.heex
Liam 87eabaa48f Fix whitespace errors
These were largely found with three regular expressions:
%> [.;,]
( <%
%> \w+ <
2024-06-01 23:50:59 -04:00

9 lines
424 B
Text

<h1>
Source changes for
<a href={~p"/images/#{@image}"}>
image #<%= @image.id %>
</a>
</h1>
<% route = fn p -> ~p"/images/#{@image}/source_changes?#{p}" end %>
<% pagination = render(PhilomenaWeb.PaginationView, "_pagination.html", page: @source_changes, route: route, conn: @conn) %>
<%= render(PhilomenaWeb.SourceChangeView, "index.html", conn: @conn, source_changes: @source_changes, pagination: pagination) %>