2018-04-29 20:44:47 +04:00
|
|
|
<!DOCTYPE html>
|
2018-05-20 10:05:21 +04:00
|
|
|
<html lang="en"
|
|
|
|
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
|
2018-12-17 13:46:08 +04:00
|
|
|
layout:decorator="default" xmlns:th="http://www.w3.org/1999/xhtml" xmlns="http://www.w3.org/1999/html">
|
2018-04-29 20:44:47 +04:00
|
|
|
<head>
|
2018-10-25 08:41:37 +04:00
|
|
|
|
2018-04-29 20:44:47 +04:00
|
|
|
</head>
|
2018-05-20 10:05:21 +04:00
|
|
|
<body>
|
2018-04-29 20:44:47 +04:00
|
|
|
|
2018-05-20 10:05:21 +04:00
|
|
|
<div class="container" layout:fragment="content">
|
2018-04-29 20:44:47 +04:00
|
|
|
|
2018-05-20 10:05:21 +04:00
|
|
|
<section id="paper">
|
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-lg-12 text-center">
|
|
|
|
<h2 class="section-heading text-uppercase">Редактирование статьи</h2>
|
2018-12-18 18:05:30 +04:00
|
|
|
<div th:replace="papers/fragments/paperNavigationFragment"/>
|
2018-05-20 10:05:21 +04:00
|
|
|
</div>
|
2018-04-29 20:48:05 +04:00
|
|
|
</div>
|
2018-05-20 10:05:21 +04:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-lg-12">
|
2018-12-17 13:46:08 +04:00
|
|
|
<form id="paper-form" method="post" th:action="@{'/papers/paper?id='+ *{id == null ? '' : id} + ''}"
|
2018-12-05 16:51:26 +04:00
|
|
|
th:object="${paperDto}">
|
2018-05-20 10:05:21 +04:00
|
|
|
<div class="row">
|
2018-10-11 19:49:16 +04:00
|
|
|
<div class="col-md-6 col-sm-12">
|
2018-12-05 16:51:26 +04:00
|
|
|
<input type="hidden" name="id" th:field="*{id}"/>
|
2018-05-20 10:05:21 +04:00
|
|
|
<div class="form-group">
|
2018-11-26 23:07:14 +04:00
|
|
|
<label for="title">Название:</label>
|
2018-12-04 11:35:51 +04:00
|
|
|
<input class="form-control" id="title" type="text"
|
2018-11-26 23:07:14 +04:00
|
|
|
placeholder="Название статьи"
|
2018-12-04 11:35:51 +04:00
|
|
|
th:field="*{title}"/>
|
2018-12-05 16:51:26 +04:00
|
|
|
<p th:if="${#fields.hasErrors('title')}" th:errors="*{title}"
|
|
|
|
class="alert alert-danger">Incorrect title</p>
|
2018-05-20 10:05:21 +04:00
|
|
|
<p class="help-block text-danger"></p>
|
|
|
|
</div>
|
2018-10-10 17:05:54 +04:00
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="status">Статус:</label>
|
2018-12-04 14:48:39 +04:00
|
|
|
<select class="form-control" th:field="*{status}" id="status">
|
2018-12-05 16:51:26 +04:00
|
|
|
<option th:each="status : ${allStatuses}" th:value="${status}"
|
|
|
|
th:text="${status.statusName}">Status
|
|
|
|
</option>
|
2018-10-10 17:05:54 +04:00
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="comment">Комментарий:</label>
|
2018-11-26 23:07:14 +04:00
|
|
|
<textarea class="form-control" rows="5" id="comment"
|
|
|
|
th:field="*{comment}"></textarea>
|
2018-10-10 17:05:54 +04:00
|
|
|
</div>
|
2018-10-25 08:41:37 +04:00
|
|
|
|
|
|
|
<div class="form-group">
|
2018-12-17 13:46:08 +04:00
|
|
|
<label>Дедлайны:</label>
|
|
|
|
<div class="row" th:each="deadline, rowStat : *{deadlines}">
|
|
|
|
<input type="hidden" th:field="*{deadlines[__${rowStat.index}__].id}"/>
|
|
|
|
<div class="col-6">
|
|
|
|
<input type="date" class="form-control" name="deadline"
|
|
|
|
th:field="*{deadlines[__${rowStat.index}__].date}"/>
|
|
|
|
</div>
|
2018-12-18 19:40:23 +04:00
|
|
|
<div class="col-4">
|
2018-12-17 13:46:08 +04:00
|
|
|
<input class="form-control" type="text" placeholder="Описание"
|
|
|
|
th:field="*{deadlines[__${rowStat.index}__].description}"/>
|
|
|
|
</div>
|
2018-12-18 19:40:23 +04:00
|
|
|
<div class="col-2">
|
2018-12-17 13:46:08 +04:00
|
|
|
<a class="btn btn-danger float-right"
|
|
|
|
th:onclick="|$('#deadlines${rowStat.index}\\.description').val('');
|
|
|
|
$('#deadlines${rowStat.index}\\.date').val('');
|
|
|
|
$('#addDeadline').click();|"><span
|
|
|
|
aria-hidden="true"><i class="fa fa-times"/></span>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<p th:if="${#fields.hasErrors('deadlines')}" th:errors="*{deadlines}"
|
2018-12-05 16:51:26 +04:00
|
|
|
class="alert alert-danger">Incorrect title</p>
|
2018-10-25 08:41:37 +04:00
|
|
|
</div>
|
2018-12-17 13:46:08 +04:00
|
|
|
<div class="form-group">
|
|
|
|
<input type="submit" id="addDeadline" name="addDeadline" class="btn btn-primary" value="Добавить
|
|
|
|
дедлайн"/>
|
|
|
|
</div>
|
2018-10-25 08:41:37 +04:00
|
|
|
|
2018-10-10 17:05:54 +04:00
|
|
|
<div class="form-check">
|
2018-11-26 23:07:14 +04:00
|
|
|
<input type="checkbox" class="form-check-input" id="locked"
|
|
|
|
th:field="*{locked}"/>
|
2018-10-10 17:05:54 +04:00
|
|
|
<label class="form-check-label" for="locked">Заблокирована</label>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="loader">Загрузить статью:</label>
|
|
|
|
<div id="loader">
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-10-18 11:21:26 +04:00
|
|
|
<div class="form-group">
|
2018-12-05 17:06:56 +04:00
|
|
|
<label>Дата создания:</label>
|
2018-12-05 17:36:53 +04:00
|
|
|
<span th:text="${paperDto.createDate == null ? '' : #dates.format(paperDto.createDate, 'dd.MM.yyyy HH:mm')}">text</span>
|
2018-10-18 11:21:26 +04:00
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label>Последнее изменение:</label>
|
2018-12-05 17:36:53 +04:00
|
|
|
<span th:text="${paperDto.updateDate == null ? '' : #dates.format(paperDto.updateDate, 'dd.MM.yyyy HH:mm')}">text</span>
|
2018-10-18 11:21:26 +04:00
|
|
|
</div>
|
2018-12-05 18:08:47 +04:00
|
|
|
<div class="form-group">
|
|
|
|
<label>Редактировать авторов статьи:</label>
|
|
|
|
<select class="selectpicker form-control" multiple="true" data-live-search="true"
|
|
|
|
title="-- Выберите авторов --"
|
2018-12-18 19:23:15 +04:00
|
|
|
th:field="*{authorIds}">
|
2018-12-05 18:08:47 +04:00
|
|
|
<option th:each="author: ${allAuthors}" th:value="${author.id}"
|
2018-12-18 19:23:15 +04:00
|
|
|
th:text="${author.lastName}">Status
|
2018-12-05 18:08:47 +04:00
|
|
|
</option>
|
|
|
|
</select>
|
2018-12-18 19:23:15 +04:00
|
|
|
<p th:if="${#fields.hasErrors('authorIds')}" th:errors="*{authorIds}"
|
2018-12-05 18:08:47 +04:00
|
|
|
class="alert alert-danger">Incorrect title</p>
|
|
|
|
</div>
|
2018-05-20 10:05:21 +04:00
|
|
|
</div>
|
2018-10-11 19:49:16 +04:00
|
|
|
<div class="col-md-3 offset-md-3 col-sm-12 offset-sm-0">
|
|
|
|
<div class="form-group">
|
|
|
|
<button id="pingButton" class="btn btn-primary text-uppercase" type="button">
|
|
|
|
Ping авторам
|
|
|
|
</button>
|
|
|
|
</div>
|
2018-10-11 15:39:57 +04:00
|
|
|
</div>
|
|
|
|
|
2018-05-20 10:05:21 +04:00
|
|
|
<div class="clearfix"></div>
|
2018-10-11 19:49:16 +04:00
|
|
|
<div class="col-lg-12">
|
|
|
|
<div class="form-group">
|
2018-12-17 13:46:08 +04:00
|
|
|
<button id="sendMessageButton" name="save" class="btn btn-success text-uppercase"
|
2018-10-11 19:49:16 +04:00
|
|
|
type="submit">
|
|
|
|
Сохранить
|
|
|
|
</button>
|
2018-12-05 16:51:26 +04:00
|
|
|
<a id="cancelButton" class="btn btn-default text-uppercase" href="/papers/papers">
|
2018-10-11 19:49:16 +04:00
|
|
|
Отмена
|
2018-12-05 16:51:26 +04:00
|
|
|
</a>
|
2018-10-11 19:49:16 +04:00
|
|
|
</div>
|
2018-11-26 23:07:14 +04:00
|
|
|
|
2018-04-29 20:44:47 +04:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-05-20 10:05:21 +04:00
|
|
|
</form>
|
|
|
|
</div>
|
2018-04-29 20:44:47 +04:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-05-20 10:05:21 +04:00
|
|
|
</section>
|
2018-10-10 17:05:54 +04:00
|
|
|
<script type="text/javascript" src="/js/file-loader.js"></script>
|
|
|
|
<script>
|
|
|
|
/*<![CDATA[*/
|
|
|
|
$(document).ready(function () {
|
|
|
|
new FileLoader({
|
|
|
|
div: "loader",
|
|
|
|
url: urlFileUpload,
|
|
|
|
maxSize: 1.5,
|
2018-10-11 19:49:16 +04:00
|
|
|
extensions: ["doc", "docx", "xls", "jpg", "pdf", "txt", "png"],
|
2018-10-10 17:05:54 +04:00
|
|
|
callback: function (response) {
|
|
|
|
showFeedbackMessage("Файл успешно загружен");
|
|
|
|
console.debug(response);
|
|
|
|
}
|
|
|
|
});
|
2018-12-05 18:08:47 +04:00
|
|
|
$('.selectpicker').selectpicker();
|
2018-10-10 17:05:54 +04:00
|
|
|
});
|
|
|
|
/*]]>*/
|
|
|
|
</script>
|
2018-05-20 10:05:21 +04:00
|
|
|
</div>
|
2018-10-10 15:30:47 +04:00
|
|
|
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|