mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-22 15:21:01 +00:00
8f57aa5f37
Redoes the UI to remove timelines, promote domains, and a lot of other things to support the refactor.
18 lines
647 B
HTML
18 lines
647 B
HTML
{% extends "admin/base_main.html" %}
|
|
|
|
{% block subtitle %}{{ emoji.shortcode }}{% endblock %}
|
|
|
|
{% block settings_content %}
|
|
<form action="." method="POST" enctype="multipart/form-data">
|
|
{% csrf_token %}
|
|
<fieldset>
|
|
<legend>Emoji Details</legend>
|
|
{% include "forms/_field.html" with field=form.shortcode %}
|
|
{% include "forms/_field.html" with field=form.image hide_existing=True %}
|
|
</fieldset>
|
|
<div class="buttons">
|
|
<a href="{% url "admin_emoji" %}" class="button secondary left">Back</a>
|
|
<button>Save</button>
|
|
</div>
|
|
</form>
|
|
{% endblock %}
|