mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-22 15:21:01 +00:00
113db4ab3a
Also did a new table style for admin pages
18 lines
636 B
HTML
18 lines
636 B
HTML
{% extends "settings/base.html" %}
|
|
|
|
{% block subtitle %}{{ emoji.shortcode }}{% endblock %}
|
|
|
|
{% block 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 %}
|