mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
* Initial .core input/button classes, refs #2415 * Docs for the new .core CSS class, refs #2415 * Applied .core class everywhere that needs it, closes #2415
27 lines
716 B
HTML
27 lines
716 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Debug messages{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>Debug messages</h1>
|
|
|
|
<p>Set a message:</p>
|
|
|
|
<form class="core" action="{{ urls.path('-/messages') }}" method="post">
|
|
<div>
|
|
<input type="text" name="message" style="width: 40%">
|
|
<div class="select-wrapper">
|
|
<select name="message_type">
|
|
<option>INFO</option>
|
|
<option>WARNING</option>
|
|
<option>ERROR</option>
|
|
<option>all</option>
|
|
</select>
|
|
</div>
|
|
<input type="hidden" name="csrftoken" value="{{ csrftoken() }}">
|
|
<input type="submit" value="Add message">
|
|
</div>
|
|
</form>
|
|
|
|
{% endblock %}
|