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.
20 lines
1.1 KiB
HTML
20 lines
1.1 KiB
HTML
<div class="colstack_item colstack_head">
|
|
<div class="rowitem">
|
|
<h1>{{lang "panel_stats_referrers_head"}}</h1>
|
|
<select form="timeRangeForm"class="spamSelector to_right autoSubmitRedirect"name="spam">
|
|
<option value="0"{{if not .ShowSpam}}selected{{end}}>{{lang "panel_stats_spam_hide"}}</option>
|
|
<option value="1"{{if .ShowSpam}}selected{{end}}>{{lang "panel_stats_spam_show"}}</option>
|
|
</select>
|
|
<noscript><input form="timeRangeForm"type="submit"></noscript>
|
|
{{template "panel_analytics_time_range.html" . }}
|
|
</div>
|
|
</div>
|
|
<form id="timeRangeForm"name="timeRangeForm"action="/panel/analytics/referrers/"method="get"></form>
|
|
<div id="panel_analytics_referrers"class="colstack_item rowlist">
|
|
{{range .ItemList}}
|
|
<div class="rowitem panel_compactrow editable_parent">
|
|
<a href="/panel/analytics/referrer/{{.Agent}}"class="panel_upshift">{{.Agent}}</a>
|
|
<span class="panel_compacttext to_right">{{.Count}}{{lang "panel_stats_views_suffix"}}</span>
|
|
</div>
|
|
{{else}}<div class="rowitem passive rowmsg">{{lang "panel_stats_referrers_no_referrers"}}</div>{{end}}
|
|
</div> |