mirror of
https://github.com/mediacms-io/mediacms.git
synced 2024-11-22 00:03:28 +01:00
19 lines
524 B
HTML
19 lines
524 B
HTML
{% extends "base.html" %}
|
|
{% load static %}
|
|
|
|
{% block headtitle %}Manage comments - {{PORTAL_NAME}}{% endblock headtitle %}
|
|
|
|
{% block headermeta %}
|
|
|
|
<meta property="og:title" content="Manage comments - {{PORTAL_NAME}}">
|
|
<meta property="og:type" content="website">
|
|
<meta property="og:description" content="">
|
|
|
|
{% endblock headermeta %}
|
|
|
|
{% block content %}<div id="page-manage-comments"></div>{% endblock %}
|
|
|
|
{% block bottomimports %}
|
|
<script src="{% static "js/manage-comments.js" %}"></script>
|
|
{% endblock bottomimports %}
|