18 lines
440 B
Django/Jinja
18 lines
440 B
Django/Jinja
{% extends 'base.html.j2' %}
|
|
|
|
{% block title %}Create Namespace{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Create a New Namespace</h1>
|
|
<form method="POST">
|
|
<label for="name">Namespace Name:</label>
|
|
<input type="text" name="name" required><br><br>
|
|
|
|
<label>
|
|
<input type="checkbox" name="is_public">
|
|
Make Namespace Public
|
|
</label><br><br>
|
|
|
|
<button type="submit">Create Namespace</button>
|
|
</form>
|
|
{% endblock %}
|