30 lines
982 B
HTML
30 lines
982 B
HTML
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>🫐Edit tags - artberry🫐</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h2>Edit image tags:</h2>
|
|
|
|
<div class="image-preview">
|
|
<img src="{{ image_preview_url }}" alt="Image preview" width="300">
|
|
</div>
|
|
|
|
<form method="POST" action="{{ url_for('image_edit', id=image.id) }}">
|
|
{{ form.hidden_tag() }}
|
|
<div class="form-group">
|
|
<label for="tags">Tags</label>
|
|
{{ form.tags(class="input-field") }}
|
|
</div>
|
|
<button type="submit" class="button">{{ form.submit.label }}</button>
|
|
</form>
|
|
|
|
<a href="{{ url_for('view', content_type='art', id=image.id) }}" class="button">Cancel</a>
|
|
</div>
|
|
</body>
|
|
</html>
|