/
OtherName
/
Projects
Обзор
Документация
Войти
/
OtherName
/
Projects
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
ProgramLearn/templates/articles_details.html
51 строка
1 KB
NikitaChernomor
upload files
09 фев 2026, 00:29
Верифицирован
09 фев 2026, 00:29
bdab9b5
Код
Авторство
О чём код?
{% extends 'base.html' %} {% block title%}Program Learn{% endblock %} {% block body %} <style> .linear-block{ width: 1266px; height: auto; background: rgb(195,20,50); background: linear-gradient(180deg, rgba(195,20,50,1) 0%, rgba(36,11,54,1) 100%); border-radius: 10px; position: absolute; padding: 0.75rem 1.25rem; margin-bottom: 1rem; align:center; } .mytext{ border: none; border-radius: 15px; text-decoration: none; width: 50px; height: 50px; color: white; font-weight: bold; font-size: 20px; } #block-success{ background: #32CD32; border: none; width: 110px; height: 30px; border-radius: 3px } #block-danger{ background: #FF0000; border: none; width: 100px; height: 30px; border-radius: 3px } .text{ color: white; } </style> <h1 align='center' class="text">{{ article.title }}</h1> <div class = "linear-block"> <p class="text_white">{{article.text}}</p> <p class="text_white"><b>Дата публикации:{{article.date.date()}}</b></p> <button id="block-danger"><a href="/articles/{{ article.id }}/delete" class="mytext">Удалить</a></button> <button id="block-success"><a href="/articles/{{ article.id }}/update" class="mytext">Изменить</a></button> </div> {% endblock %}