/
ColdWaterV
/
p1
Обзор
Документация
Войти
/
ColdWaterV
/
p1
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
html
21 строка
845 B
ColdWaterV
create html
03 сен 2025, 09:04
03 сен 2025, 09:04
c2bcf59
Код
Авторство
О чём код?
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="/static/styles.css"> <title>Мероприятия студентов</title> </head> <body style="background-color:#F0F8FF; color:#003366; font-family:Arial, sans-serif;"> <h1>Список мероприятий</h1> {% for event in events %} <div class="event-card"> <h2>{{ event.title }}</h2> <p><strong>Время:</strong> {{ event.start_time }}</p> <p><strong>Место:</strong> {{ event.location }}</p> <p><strong>Описание:</strong> {{ event.description }}</p> </div> {% endfor %} <a href="/create_event">Создать новое мероприятие</a> </body> </html>