{% extends "base.html" %} {% block content %} {{ include ('install/steps.html', {active: 'general'}) }}
{% include('templates/successerror.html') %}
{% import "templates/inputerror.html" as inputerror %}
AJAX Guestbook Installation (Step 1 - General Settings)
GuestBook Title, Company and Website.
{{ inputerror.checkInput("titleerror") }}
{{ inputerror.checkInput("companyerror") }}
{{ inputerror.checkInput("urlerror") }}
Select the required fields.
{% set cbval = post.cbName ? 1 : (post.validategeneral is defined and not post.cbName) ? 0 : installgeneral[':gbreqname'] ?: 0 %}
{% set cbval = post.cbEmail ? 1 : (post.validategeneral is defined and not post.cbEmail) ? 0 : installgeneral[':gbreqemail'] ?: 0 %}
{% set cbval = post.cbWebsite ? 1 : (post.validategeneral is defined and not post.cbWebsite) ? 0 : installgeneral[':gbreqweb'] ?: 0 %}
{% set cbval = post.cbComments ? 1 : (post.validategeneral is defined and not post.cbComments) ? 0 : installgeneral[':gbreqcomment'] ?: 0 %}
This should always be set to required. You can disable after setting up the guestbook and logging to admin area.
Message Setting.
Enable CAPTCHA on new message entry.
Requires admin approval before available to public.
{{ inputerror.checkInput("gbcommentsmincharerror") }}
{{ inputerror.checkInput("gbcommentsmaxcharerror") }}
{{ inputerror.checkInput("gbentriesperpageerror") }}
Pevious
{% endblock %}