Web platform for sharing free image data for ML and research

Homepage: https://datasets.roundabout-host.com

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 • 777 B
HTML document, ASCII text
        
            
1
{% extends "default.html" %}
2
3
{% block title %}Editing {{ gallery.title }} | gigadata{% 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