16 lines
407 B
HTML
16 lines
407 B
HTML
{% extends 'adminplus/index.html' %}
|
|
|
|
{% block title %}Ircbot - Privmsg{% endblock %}
|
|
|
|
{% block content %}
|
|
<div id="content-main">
|
|
<form id="ircbot_privmsg_form" action="{% url 'admin:ircbot_privmsg' %}" method="post">
|
|
{% csrf_token %}
|
|
<table>
|
|
{{ form }}
|
|
</table>
|
|
<input class="submit-button" type="submit" value="Privmsg"/>
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|