summaryrefslogtreecommitdiffstats
path: root/askbot/deps/livesettings/templates/livesettings/_admin_site_views.html
blob: 17d08f58ba68f6d973cb93742e2e1bb2e5193f48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% load i18n %}
<div id="content-related">
    <div class="module" id="sites-module">
	    <h2 class="module-title">{% trans 'Sites' %}</h2>
		<div class="module-content">
			<ul>
				{% for label, link in links %}
				<li>
					<a href="{{ link }}">{{ label }}</a>
				</li>
				{% endfor %}
			</ul>			
		</div>
	</div>
</div>