aboutsummaryrefslogtreecommitdiff
path: root/cgi/templates/bans_geo
diff options
context:
space:
mode:
Diffstat (limited to 'cgi/templates/bans_geo')
-rw-r--r--cgi/templates/bans_geo14
1 files changed, 14 insertions, 0 deletions
diff --git a/cgi/templates/bans_geo b/cgi/templates/bans_geo
new file mode 100644
index 0000000..64687e8
--- /dev/null
+++ b/cgi/templates/bans_geo
@@ -0,0 +1,14 @@
+geo $bans_global {
+ default 0;
+<?py for ip in global_bans: ?>
+ #{ip} 1;
+<?py #endfor ?>
+}
+<?py for board, bans in board_bans.iteritems(): ?>
+geo $bans_#{board} {
+ default 0;
+ <?py for ip in bans: ?>
+ #{ip} 1;
+ <?py #endfor ?>
+}
+<?py #endfor ?>