b1af963916
Honor user blocks in ProfileReplyEditSubmit. Reduce boilerplate. Update account_privacy_profile_comments phrase. Add account_privacy_profile_comments_public phrase. Add account_privacy_profile_comments_registered phrase. Add account_privacy_profile_comments_self phrase. Add account_privacy_enable_embeds phrase. Add profile_comments column to users table. Add who_can_convo column to users table. You will need to run the updater / patcher for this commit.
24 lines
1.1 KiB
HTML
24 lines
1.1 KiB
HTML
<div class="colstack_item colstack_head">
|
|
<div class="rowitem">
|
|
<h1>{{lang "panel_stats_topic_counts_head"}}</h1>
|
|
{{template "panel_analytics_time_range.html" . }}
|
|
</div>
|
|
</div>
|
|
<form id="timeRangeForm"name="timeRangeForm"action="/panel/analytics/topics/"method="get"></form>
|
|
<div id="panel_analytics_topics"class="colstack_graph_holder">
|
|
<div class="ct_chart"aria-label="{{lang "panel_stats_topic_counts_chart_aria"}}"></div>
|
|
</div>
|
|
<div class="colstack_item colstack_head">
|
|
<div class="rowitem">
|
|
<h1>{{lang "panel_stats_details_head"}}</h1>
|
|
</div>
|
|
</div>
|
|
<div id="panel_analytics_topics_table"class="colstack_item rowlist"aria-label="{{lang "panel_stats_topic_counts_table_aria"}}">
|
|
{{range .ViewItems}}
|
|
<div class="rowitem panel_compactrow editable_parent">
|
|
<a class="panel_upshift unix_to_{{if or (or (or (eq $.TimeRange "six-hours") (eq $.TimeRange "twelve-hours")) (eq $.TimeRange "one-day")) (eq $.TimeRange "two-days")}}24_hour_time{{else}}date{{end}}">{{.Time}}</a>
|
|
<span class="panel_compacttext to_right">{{.Count}}{{lang "panel_stats_topics_suffix"}}</span>
|
|
</div>
|
|
{{end}}
|
|
</div>
|
|
{{template "panel_analytics_script.html" . }} |