X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fresources%2Ftemplates%2Finclude%2Fhead.html;h=5f0d567f12dd49f367a75cb30be0ecd1c21fe4a2;hb=2c5b76a2fbce16ef33f079a3de9ae9fc9a9d30b8;hp=ee4278cf53a907de19c417ad2c7e26594d5c1286;hpb=47df88512f5288d6a1f5f268cdf787bb4bf169c7;p=Sone.git diff --git a/src/main/resources/templates/include/head.html b/src/main/resources/templates/include/head.html index ee4278c..5f0d567 100644 --- a/src/main/resources/templates/include/head.html +++ b/src/main/resources/templates/include/head.html @@ -1,4 +1,4 @@ -
+
<% formPassword|html>
@@ -8,7 +8,7 @@ @@ -24,7 +24,7 @@ @@ -84,11 +84,53 @@ }); return false; }); + $("#sone .blacklist").submit(function() { + var blacklistElement = this; + $.getJSON("ajax/blacklistSone.ajax", { "sone" : getSoneId(this), "formPassword" : getFormPassword() }, function() { + $(getSoneElement(blacklistElement)).slideUp(); + }); + return false; + }); + $("#sone .unblacklist").submit(function() { + var unblacklistElement = this; + $.getJSON("ajax/unblacklistSone.ajax", { "sone" : getSoneId(this), "formPassword" : getFormPassword() }, function() { + $(getSoneElement(unblacklistElement)).slideUp(); + }); + return false; + }); + }); + + +
+ <%if !webInterface.core.identityManager.connected> +
+ <%= Warning.PluginNotConnected.Text|l10n|html|replace needle="{link}" replacement=""|replace needle="{/link}" replacement=""> +
+ <%/if> +
  <%ifnull ! currentSone>