Migration complete

This commit is contained in:
2026-06-23 19:24:38 +02:00
parent 279160c1cb
commit 64b26ef059
126 changed files with 8121 additions and 221 deletions

View File

@@ -19,7 +19,7 @@
<div class="entry-info">
<h1 class="entry-title">
{{ $entry->title }}
{{ $entry->title ?? $entry->complete_title }}
@if( $entry->state === 'pending' )
<div style="display:inline;color:var(--rhpz-orange);">
-
@@ -53,17 +53,7 @@
@endif
</h1>
<div class="entry-authors">
@forelse( $entry->authors as $author)
@if($loop->first)
By
@endif
{{ $author->name }}
@if( !$loop->last )
,
@endif
@empty
No authors
@endforelse
By <a href="{!! databaseRoute( [ 'authors' => $entry->authors->pluck('id')->toArray() ] ) !!}">{{ $entry->authors->pluck('name')->implode(', ') }}</a>
</div>
<div class="entry-submission-byline">
@if($entry->user_id)
@@ -223,7 +213,7 @@
@if( $entry->description )
<x-entry-section-title label="Description" icon="file-text"/>
<div class="entry-description">
{{ $entry->description }}
{!! $entry->description_html !!}
</div>
@endif
@if( $entry->hashes->isNotEmpty() )