- Implement full web interface with Go html/template server - Add GX component library (buttons, dialogs, tables, forms, etc.) - Create scene/performer/studio/movie detail and listing pages - Add Adult Empire scraper for additional metadata sources - Implement movie support with database schema - Add import and sync services for data management - Include comprehensive API and frontend documentation - Add custom color scheme and responsive layout 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
27 lines
776 B
HTML
27 lines
776 B
HTML
<div class="gx-table-wrapper">
|
|
|
|
<table class="gx-table">
|
|
<thead>
|
|
<tr>
|
|
<th class="sortable" onclick="sortTable(0)">Name</th>
|
|
<th class="sortable" onclick="sortTable(1)">Scenes</th>
|
|
<th class="sortable" onclick="sortTable(2)">Tags</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
{{range .Performers}}
|
|
<tr class="gx-table-row-link"
|
|
onclick="location.href='/performers/{{.Performer.ID}}'">
|
|
|
|
<td data-label="Name">{{.Performer.Name}}</td>
|
|
<td data-label="Scenes">{{.SceneCount}}</td>
|
|
<td data-label="Tags">{{len .Performer.Tags}}</td>
|
|
|
|
</tr>
|
|
{{end}}
|
|
</tbody>
|
|
</table>
|
|
|
|
</div>
|