Skip to content

BUG — Ticket: rutas de layout incorrectas en HTMLs #16

@alopezdeharo

Description

@alopezdeharo

ticket-list.html y ticket-detail.html usan rutas incorrectas. El layout está en templates/layout/

<!-- Así están ahora -->
<head th:replace="~{head :: head('...')}">
<nav th:replace="~{navbar :: navbar}">
<footer th:replace="~{footer :: footer}">
<div th:replace="~{footer :: scripts}">

<!-- Cambiarlo por -->
<head th:replace="~{layout/head :: head('...')}">
<nav th:replace="~{layout/navbar :: navbar}">
<footer th:replace="~{layout/footer :: footer}">
<script th:replace="~{layout/footer :: scripts}">

Afecta a: ticket-list.html, ticket-detail.html y ticket-form.html.

Metadata

Metadata

Assignees

Labels

bugSomething isn't working

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions