mirror of
https://github.com/philomena-dev/philomena.git
synced 2025-02-01 11:56:43 +01:00
87eabaa48f
These were largely found with three regular expressions: %> [.;,] ( <% %> \w+ <
16 lines
720 B
Text
16 lines
720 B
Text
<h1>
|
|
<%= @commission.user.name %>'s Commissions
|
|
</h1>
|
|
<div class="column-layout">
|
|
<% # Side column %>
|
|
<div class="column-layout__left">
|
|
<%= render(PhilomenaWeb.Profile.CommissionView, "_listing_sidebar.html", commission: @commission, user: @user, rendered: @rendered, conn: @conn) %>
|
|
</div>
|
|
<% # Main column %>
|
|
<div class="column-layout__main">
|
|
<% # Commission sheet block %>
|
|
<%= render(PhilomenaWeb.Profile.CommissionView, "_listing_sheet.html", commission: @commission, user: @user, conn: @conn) %>
|
|
<% # Types and prices block %>
|
|
<%= render(PhilomenaWeb.Profile.CommissionView, "_listing_items.html", commission: @commission, user: @user, items: @items, conn: @conn) %>
|
|
</div>
|
|
</div>
|