Web platform for sharing free data for ML and research

By using this site, you agree to have cookies stored on your device, strictly for functional purposes, such as storing your session and preferences.

Dismiss

 edit-gallery.html

View raw Download
text/html • 784 B
HTML document, ASCII text
        
            
1
{% extends "default.html" %}
2
3
{% block title %}Editing {{ gallery.title }} | {{ site_name }}{% endblock %}
4
5
{% block content %}
6
<x-frame style="--width: 768px" class="vbox">
7
<h1>Editing: {{ gallery.title }}</h1>
8
<p>
9
<a href="/gallery/{{ gallery.id }}/">Back</a>
10
</p>
11
<form method="POST" class="vbox">
12
<label>
13
<span class="required-asterisk">Title</span>
14
<input type="text" name="title" value="{{ gallery.title }}" required>
15
</label>
16
<label>
17
Description
18
<textarea name="description">{{ gallery.description }}</textarea>
19
</label>
20
<button type="submit">Submit</button>
21
</form>
22
</x-frame>
23
{% endblock %}
24