takahe/templates/admin/hashtag_edit.html

47 wiersze
1.7 KiB
HTML
Czysty Zwykły widok Historia

2022-11-29 04:41:36 +00:00
{% extends "settings/base.html" %}
{% block subtitle %}{{ hashtag.hashtag }}{% endblock %}
{% block content %}
<form action="." method="POST">
{% csrf_token %}
<fieldset>
<legend>hashtag Details</legend>
{% include "forms/_field.html" with field=form.hashtag %}
{% include "forms/_field.html" with field=form.name_override %}
</fieldset>
<fieldset>
<legend>Access Control</legend>
{% include "forms/_field.html" with field=form.public %}
</fieldset>
<fieldset>
<legend>Stats</legend>
<div class="field stats">
{% for stat_month, stat_value in hashtag.usage_months.items|slice:":5" %}
2023-01-09 16:58:17 +00:00
{% if forloop.first %}
<table>
<tr>
<th>Month</th>
<th>Usage</th>
</tr>
{% endif %}
2022-11-29 04:41:36 +00:00
<tr>
<th>{{ stat_month|date:"M Y" }}</th>
<td>{{ stat_value }}</td>
</tr>
2023-01-09 16:58:17 +00:00
{% if forloop.last %}
</table>
{% endif %}
2022-11-29 04:41:36 +00:00
{% empty %}
2023-01-14 17:32:48 +00:00
<p class="help">Hashtag is either not used or stats have not been computed yet.</p>
2022-11-29 04:41:36 +00:00
{% endfor %}
</div>
</fieldset>
<div class="buttons">
2022-12-20 09:16:03 +00:00
<a href="{{ hashtag.urls.admin }}" class="button secondary left">Back</a>
<a href="{{ hashtag.urls.timeline }}" class="button secondary">View Posts</a>
2022-11-29 04:41:36 +00:00
<button>Save</button>
</div>
</form>
{% endblock %}