Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • osian/sucs-site
  • kais58/sucs-site
  • imranh/sucs-site
  • foshjedi2004/sucs-site
  • gigosaurus/sucs-site
  • matstn/sucs-site
  • ripp_/sucs-site
  • eggnog/sucs-site
  • sucssite/sucs-site
  • elbows/sucs-site
  • realitykiller/sucs-site
  • crox/sucs-site
  • vectre/sucs-site
  • welshbyte/sucs-site
  • paperclipman/sucs-site
15 results
Show changes
Showing
with 646 additions and 210 deletions
<div class="cbb">
<h3>Get involved!</h3>
<p>If you&#39;re interested in any of the SUCS projects, why not get involved by joining the <a href="http://lists.sucs.org/mailman/listinfo/devel">SUCS Development mailing list</a>?</p>
<p>It&#39;s a great way to brush up on your skills or learn something new, with the guidance of more experienced SUCS members.</p>
</div>
<p>Many statistics are collected here at SUCS. </p>
<p>Here are links to them:</p>
<p><a href="https://sucs.org/stats/webalizer/" title="Webalizer" target="_blank">Webalizer</a></p>
<p><a href="https://sucs.org/stats/cacti/" title="Cacti" target="_blank">Cacti</a>&nbsp;(Bypass login <a href="https://sucs.org/stats/cacti/graph_view.php?action=tree&amp;tree_id=1&amp;leaf_id=8&amp;select_first=true" target="_blank">here</a>)</p>
<p><a href="https://sucs.org/stats/nut/upsstats.cgi" target="_self">Nut</a></p>
<p><a href="https://sucs.org/stats/ganglia/" title="Ganglia" target="_blank">Ganglia</a></p>
<p><a href="https://sucs.org/stats/nmap/" title="Nmap Log Parser" target="_blank">Nmap Log Parser</a></p>
<p>&nbsp;</p>
# The main sucs website
<VirtualHost 137.44.10.1:80>
DocumentRoot "/var/www/sucssite/htdocs"
ServerAdmin admin@sucs.org
ServerName sucs.org
ServerAlias www.sucs.org
ServerAlias sucs.swan.ac.uk
ServerAlias www.sucs.swan.ac.uk
ServerAlias compsoc.swan.ac.uk
ServerAlias www.compsoc.swan.ac.uk
Include /etc/apache2/conf.sucs.d/userdir.conf
ErrorLog /var/log/apache2/sucssite_error.log
CustomLog /var/log/apache2/sucssite_access.log combined
LogLevel warn
<Directory "/var/www/sucssite/htdocs">
AllowOverride All
XBitHack On
Order allow,deny
Allow from all
Options +MultiViews
<IfModule mod_rewrite.c>
RewriteEngine On
# Ensure requests are for our preferred domains
# Disabled by ~imranh 08/04/2015
# We want people to do to sucs.org becuase we have a ssl cert for that
# Keep stuff thats come in via *.swan.ac.uk in .ac.uk
#RewriteCond %{HTTP_HOST} ^www.sucs.swan.ac.uk [NC,OR]
#RewriteCond %{HTTP_HOST} ^compsoc.swan.ac.uk [NC,OR]
#RewriteCond %{HTTP_HOST} ^www.compsoc.swan.ac.uk [NC]
#RewriteRule ^(.*)$ http://sucs.swan.ac.uk/$1 [R=301,L]
#(web)mail.sucs.org to sucs.org/webmail
RewriteCond %{HTTP_HOST} ^mail.sucs.org [NC,OR]
RewriteCond %{HTTP_HOST} ^webmail.sucs.org [NC]
RewriteRule ^(.*)$ http://sucs.org/webmail/ [R=301,L]
# Everything else may as well goto sucs.org
RewriteCond %{HTTP_HOST} !^sucs.org [NC]
#RewriteCond %{HTTP_HOST} !^sucs.swan.ac.uk [NC]
RewriteRule ^(.*)$ http://sucs.org/$1 [R=301,L]
# If its not a file or directory pass it to the website script
RewriteCond %{REQUEST_URI} !=/server-status
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/index\.php.*
RewriteRule ^(.*)$ index.php/$1 [QSA,L]
</IfModule>
#RedirectMatch permanent ^/Community/Forum$ https://sucs.org/Community/Forum/
RedirectMatch permanent ^/webmail$ https://sucs.org/webmail/
</Directory>
</VirtualHost>
<IfModule mod_ssl.c>
<VirtualHost 137.44.10.1:443>
DocumentRoot "/var/www/sucssite/htdocs"
ServerAdmin admin@sucs.org
ServerName sucs.org
ServerAlias www.sucs.org
ServerAlias sucs.swan.ac.uk
ServerAlias www.sucs.swan.ac.uk
ServerAlias compsoc.swan.ac.uk
ServerAlias www.compsoc.swan.ac.uk
ErrorLog /var/log/apache2/ssl_error.log
TransferLog /var/log/apache2/ssl_access.log
LogLevel warn
SSLEngine on
SSLCipherSuite EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH
SSLProtocol All -SSLv2 -SSLv3
SSLHonorCipherOrder On
Header always set Strict-Transport-Security "max-age=604800"
Header always set X-Frame-Options SAMEORIGIN
Header always set X-Content-Type-Options nosniff
SSLCompression off
SSLCertificateFile /usr/local/sucs-pki/certs/sucs.crt
SSLCertificateKeyFile /usr/local/sucs-pki/private/sucs.key
SSLCertificateChainFile /usr/local/sucs-pki/certs/globalsign.crt
<Files ~ "\.(cgi|shtml|phtml|php3?)$">
SSLOptions +StdEnvVars
</Files>
<Directory "/var/www/cgi-bin">
SSLOptions +StdEnvVars
</Directory>
SetEnvIf User-Agent ".*MSIE.*" \
nokeepalive ssl-unclean-shutdown \
downgrade-1.0 force-response-1.0
CustomLog /var/log/apache2/ssl_request.log \
"%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
ProxyRequests Off
<Proxy *>
Order allow,deny
Allow from all
</Proxy>
ProxyVia On
SSLProxyEngine on
ProxyPass /svn https://projects.sucs.org/svn
<Location /svn >
#DAV svn
#SVNParentPath /var/projects/svn
#Redirect / https://projects.sucs.org/
ProxyPassReverse https://projects.sucs.org/svn
</Location>
Include /etc/apache2/conf.sucs.d/userdir.conf
<Directory "/var/www/sucssite/htdocs">
Options Indexes FollowSymLinks Includes ExecCGI MultiViews
AllowOverride All
XBitHack On
Order allow,deny
Allow from all
Options +MultiViews
<IfModule mod_rewrite.c>
RewriteEngine On
# Ensure requests are for our preferred domains
# Disabled by ~imranh 08/04/2015
# We want people to do to sucs.org becuase we have a ssl cert for that
# Keep stuff thats come in via *.swan.ac.uk in .ac.uk
#RewriteCond %{HTTP_HOST} ^www.sucs.swan.ac.uk [NC,OR]
#RewriteCond %{HTTP_HOST} ^compsoc.swan.ac.uk [NC,OR]
#RewriteCond %{HTTP_HOST} ^www.compsoc.swan.ac.uk [NC]
#RewriteRule ^(.*)$ https://sucs.swan.ac.uk/$1 [R=301,L]
#(web)mail.sucs.org to sucs.org/webmail
RewriteCond %{HTTP_HOST} ^mail.sucs.org [NC,OR]
RewriteCond %{HTTP_HOST} ^webmail.sucs.org [NC]
RewriteRule ^(.*)$ https://sucs.org/webmail/$1 [R=301,L]
# Everything else may as well goto sucs.org
RewriteCond %{HTTP_HOST} !^sucs.org [NC]
#RewriteCond %{HTTP_HOST} !^sucs.swan.ac.uk [NC]
RewriteRule ^(.*)$ https://sucs.org/$1 [R=301,L]
# If its not a file or directory pass it to the website script
RewriteCond %{REQUEST_URI} !=/server-status
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/index\.php.*
RewriteRule ^(.*)$ index.php/$1 [QSA,L]
</IfModule>
</Directory>
# Disabled, Moved to the gitlab VM ~imranh
#Include /etc/apache2/conf.d/projects.conf
# Redirect to squirrelmail install
Alias /squirrelmail /usr/share/squirrelmail
Alias /webmail/program/js/tiny_mce/ /usr/share/tinymce/www/
Alias /webmail /var/lib/roundcube
Alias /roundcube/program/js/tiny_mce/ /usr/share/tinymce/www/
Alias /roundcube /var/lib/roundcube
# 2015-03-16 Moved the /cam alias to here from /etc/apache2/conf.d/webcam to stop it becoming an alias on all virtual hosts, commented out the file in the other location. ~rjames93
Alias /cam /var/cam
<Directory "/var/cam">
Order allow,deny
Allow from all
Options Indexes SymLinksIfOwnerMatch
</Directory>
<Location /cam>
AuthType Basic
AuthName "Staff Only Area"
AuthBasicProvider ldap
AuthLDAPURL "ldap://127.0.0.1/dc=sucs,dc=org?uid"
AuthLDAPGroupAttribute memberUid
AuthLDAPGroupAttributeIsDN off
Require ldap-group cn=sucsstaff,ou=Group,dc=sucs,dc=org
</Location>
Alias /stats/collectd-web /var/www/collectd-web
<Directory /var/www/collectd-web/cgi-bin>
Options Indexes ExecCGI
AllowOverride All
AddHandler cgi-script .cgi
</Directory>
</VirtualHost>
</IfModule>
{* Banana awarding widget *}
<div class="cbb">
{if $awarded == true}
<h3>Nomination Received</h3>
<p>Thanks for your nomination. A member of our elite <q>banana squad</q> will review it soon.</p>
<p><small>Please note that not all nominations will necessarily become awards</small></p>
{else}
{if $banana_admin == true}
{assign var='action_text' value='Award'}
<h3>Award Bananas to {$who}</h3>
{else}
{assign var='action_text' value='Nominate'}
<h3>Nominate {$who} for a Banana Award</h3>
<p><q>Please tell us if you think this user has done something good recently (deserving yellowy recognition) or something dumb (deserving of greenish derision)</q></p>
{/if}
<form action="{$url}" method="post">
<div>
<input type="hidden" name="action" value="award" />
<p>Number of bananas</p>
<select name="number">
<option>3</option>
<option>2</option>
<option selected="selected">1</option>
<option>-1</option>
<option>-2</option>
<option>-3</option>
</select>
</div>
<div>
<p>Why</p>
<span class="textinput"><textarea id="bananareason" name="why" cols="25" rows="10"></textarea></span>
</div>
<div>
<span class="textinput"><input type="submit" value="{$action_text}" /></span>
</div>
<div class="clear"></div>
</form>
{/if}
{if $awarded == true}
<h3>Nomination Received</h3>
<p>Thanks for your nomination. A member of our elite <q>banana squad</q> will review it soon.</p>
<p>
<small>Please note that not all nominations will necessarily become awards</small>
</p>
{else}
{if $banana_admin == true}
{assign var='action_text' value='Award'}
<h3>Award Bananas to {$who}</h3>
{else}
{assign var='action_text' value='Nominate'}
<h3>Nominate {$who} for a Banana Award</h3>
<p><q>Please tell us if you think this user has done something good recently (deserving yellowy recognition)
or something dumb (deserving of greenish derision)</q></p>
{/if}
<form action="{$url}" method="post" id="bananaform">
<div>
<input type="hidden" name="action" value="award"/>
<p>Number of bananas</p>
<select name="number">
<option>3</option>
<option>2</option>
<option selected="selected">1</option>
<option>-1</option>
<option>-2</option>
<option>-3</option>
</select>
</div>
<div>
<p>Why</p>
<span class="textinput"><textarea id="bananareason" name="why" formid="bananaform" cols="25" rows="10"></textarea></span>
</div>
<div>
<span class="textinput"><input type="submit" value="{$action_text}"/></span>
</div>
<div class="clear"></div>
</form>
{/if}
</div>
<ul class="bananas">
{foreach name=awards from=$awards item=award}
<li class="{award_image_class number=$award.score}">
{if !isset($singlemember)}
<strong>{if $award.score >0}+{/if}{$award.score}</strong> awarded to
<a href="{$baseurl}{if $award.real == TRUE}/Community/Members/{else}/Community/Bananas{/if}{$award.username}">{$award.username}</a>
<small>(from {$award.who}, {$award.whn|date_format:"%d %b %Y"})</small><br /> {/if}
<q>{$award.why}</q> <br />
{if isset($singlemember)} <small>
<strong>{if $award.score >0}+{/if}{$award.score}</strong> awarded by {$award.who} on {$award.whn|date_format:"%d %b %Y"}
</small>{/if}
</li>
{/foreach}
</ul>
{foreach name=awards from=$awards item=award}
<li class="{award_image_class number=$award.score}">
{if !isset($singlemember)}
<strong>{if $award.score >0}+{/if}{$award.score}</strong>
awarded to
<a href="{$baseurl}{if $award.real == TRUE}/Community/Members/{else}/Community/Bananas/{/if}{$award.username}">{$award.username}</a>
<small>(from {$award.who}, {$award.whn|date_format:"%d %b %Y"})</small>
<br/>
{/if}
<q>{$award.why}</q> <br/>
{if isset($singlemember)}
<small>
<strong>{if $award.score >0}+{/if}{$award.score}</strong>
awarded by {$award.who} on {$award.whn|date_format:"%d %b %Y"}
</small>{/if}
</li>
{/foreach}
</ul>
\ No newline at end of file
<div class="cbb">
<h3>This year's leaderboard<img class="emblem" src="/images/bananas/banana-bunch.png" alt="Yellow Bananas" /></h3>
<ol>
{foreach name=top from=$stats.yeartop key=key item=member}
{if $member.real == TRUE}
<li><a href="/Community/Members/{$member.username}">{$member.username}</a> ({$member.sum})</li>
{else}
<li><a href="/Community/Bananas/{$member.username}">{$member.username}</a> ({$member.sum})</li>
{/if}
{/foreach}
</ol>
<h3>This year's leaderboard<img class="emblem" src="{$baseurl}/images/bananas/banana-bunch.png"
alt="Yellow Bananas"/></h3>
<ol>
{foreach name=top from=$stats.yeartop key=key item=member}
{if $member.real == TRUE}
<li><a href="{$baseurl}/Community/Members/{$member.username}">{$member.username}</a> ({$member.sum})
</li>
{else}
<li><a href="{$baseurl}/Community/Bananas/{$member.username}">{$member.username}</a> ({$member.sum})
</li>
{/if}
{/foreach}
</ol>
</div>
<div class="cbb">
<h3>Most valued members<img class="emblem" src="/images/bananas/banana-bunch.png" alt="Yellow Bananas" /></h3>
<ol>
{foreach name=top from=$stats.top key=key item=member}
{if $member.real == TRUE}
<li><a href="/Community/Members/{$member.username}">{$member.username}</a> ({$member.sum})</li>
{else}
<li><a href="/Community/Bananas/{$member.username}">{$member.username}</a> ({$member.sum})</li>
{/if}
{/foreach}
</ol>
<h3>Most valued members<img class="emblem" src="{$baseurl}/images/bananas/banana-bunch.png" alt="Yellow Bananas"/>
</h3>
<ol>
{foreach name=top from=$stats.top key=key item=member}
{if $member.real == TRUE}
<li><a href="{$baseurl}/Community/Members/{$member.username}">{$member.username}</a> ({$member.sum})
</li>
{else}
<li><a href="{$baseurl}/Community/Bananas/{$member.username}">{$member.username}</a> ({$member.sum})
</li>
{/if}
{/foreach}
</ol>
</div>
<div class="cbb">
<h3>Hall of Shame<img class="emblem" src="/images/bananas/banana-g-bunch.png" alt="Green Bananas" /></h3>
<ol>
{foreach name=top from=$stats.bottom key=key item=member}
{if $member.real == TRUE}
<li><a href="/Community/Members/{$member.username}">{$member.username}</a> ({$member.sum})</li>
{else}
<li><a href="/Community/Bananas/{$member.username}">{$member.username}</a> ({$member.sum})</li>
{/if}
{/foreach}
</ol>
<h3>Hall of Shame<img class="emblem" src="{$baseurl}/images/bananas/banana-g-bunch.png" alt="Green Bananas"/></h3>
<ol>
{foreach name=top from=$stats.bottom key=key item=member}
{if $member.real == TRUE}
<li><a href="{$baseurl}/Community/Members/{$member.username}">{$member.username}</a> ({$member.sum})
</li>
{else}
<li><a href="{$baseurl}/Community/Bananas/{$member.username}">{$member.username}</a> ({$member.sum})
</li>
{/if}
{/foreach}
</ol>
</div>
{* Banana viewer template, classic style *}
{if $mode == "detail"}
<div class="box">
<div class="boxhead"><h2>Banana Details for {$who}</h2></div>
<div class="boxcontent">
{if $awards|@count < 1}
<p>{$who} doesn't have any bananas yet</p>
{else}
<table cellpadding="10">
<tr>
<th colspan="2">Bananas</th>
<th>When</th>
<th>By whom</th>
<th>Why</th>
</tr>
{foreach name=awards from=$awards key=key item=award}
<tr>
<td>{$award.score}</td>
<td>{bananaprint score=$award.score}</td>
<td>{$award.whn|date_format:"%d %b %Y %R"}</td>
<td>{$award.who}</td>
<td>{$award.why}</td>
</tr>
{/foreach}
</table>
{/if}
</div>
<div class="hollowfoot"><div><div></div></div></div>
</div>
<div class="box">
<div class="boxhead"><h2>Banana Details for {$who}</h2></div>
<div class="boxcontent">
{if $awards|@count < 1}
<p>{$who} doesn't have any bananas yet</p>
{else}
<table cellpadding="10">
<tr>
<th colspan="2">Bananas</th>
<th>When</th>
<th>By whom</th>
<th>Why</th>
</tr>
{foreach name=awards from=$awards key=key item=award}
<tr>
<td>{$award.score}</td>
<td>{bananaprint score=$award.score}</td>
<td>{$award.whn|date_format:"%d %b %Y %R"}</td>
<td>{$award.who}</td>
<td>{$award.why}</td>
</tr>
{/foreach}
</table>
{/if}
</div>
<div class="hollowfoot">
<div>
<div></div>
</div>
</div>
</div>
{/if}
<div id="branding">
<div id="brandingC">
<div class="cornerTopLeft">
<div class="cornerTopRight">
<div id="logo">
<a href="/"><img src="/images/sucslogo-halo.png" width="170px" height="76px" alt="SUCS" /></a>
</div>
<div id="brandingC">
<div class="cornerTopLeft">
<div class="cornerTopRight">
<div id="logo">
<a href="{$baseurl}/"><img src="{$baseurl}/images/sucslogo-halo.png" width="170" height="76"
alt="SUCS"/></a>
</div>
{include file="login.tpl"}
{include file="login.tpl"}
<div id="title">
<h1>{$title}</h1>
{include file="breadcrumb.tpl"}
<div id="title">
<h1>{$title}</h1>
{include file="breadcrumb.tpl"}
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="breadcrumb">
{if $pathlist}
<ul>
{foreach name=pathlist from=$pathlist key=key item=item}
<li>{if !$smarty.foreach.pathlist.first}{if $item!=""}&gt; {/if}{/if}{if !$smarty.foreach.pathlist.last}<a href="{buildpath list=$pathlist item=$item|escape:'url'}">{/if}{if $item}{$item|escape:'htmlall'}{else}{if $smarty.foreach.pathlist.first}SUCS{/if}{/if}{if !$smarty.foreach.pathlist.last}</a>{/if}</li>
{/foreach}
</ul>
{/if}
</div>
<div id="breadcrumb">
{if $pathlist}
<ul>
{foreach name=pathlist from=$pathlist key=key item=item}
<li>{if !$smarty.foreach.pathlist.first}{if $item!=""}&gt; {/if}{/if}{if !$smarty.foreach.pathlist.last}
<a href="{$baseurl}{buildpath list=$pathlist item=$item}">{/if}{if $item}{$item|escape:'htmlall'}{else}{if $smarty.foreach.pathlist.first}SUCS{/if}{/if}{if !$smarty.foreach.pathlist.last}</a>{/if}
</li>
{/foreach}
</ul>
{/if}
</div>
{math equation="x+1" x=$level assign=level}
{if $level > 0}
<ul>
{/if}
{foreach name=contents from=$data key=name item=item}
{if $level == 0}<h3>{else}<li>{/if}<a href="{$rootnode}{$parent}/{$name}">{$name}</a>{if $level == 0}</h3>
{/if}{if $item.summary}{if $level > 0} - {/if}{$item.summary}{/if}{if is_array($item.file)}
{include file="contents-loop.tpl" data=$item.file parent="$parent/$name" level=$level}
{/if}
{if $level > 0}</li>{/if}
{/foreach}
{if $level > 0}
{/if}
{foreach name=contents from=$data key=name item=item}
{if $level == 0}<h3>{else}<li>{/if}<a href="{$rootnode}{$parent}/{$name}">{$name}</a>{if $level == 0}</h3>
{/if}{if $item.summary}{if $level > 0} - {/if}{$item.summary}{/if}{if is_array($item.file)}
{include file="contents-loop.tpl" data=$item.file parent="$parent/$name" level=$level}
{/if}
{if $level > 0}</li>{/if}
{/foreach}
{if $level > 0}
</ul>
{/if}
{if $compoutput != ""}
<div class="clear"></div>
<div class="error">
<div class="errorhead">
<h3>Unexpected Output From Component</h3>
</div>
<div class="errorcontent">
{$compoutput}
</div>
</div>
<div class="clear"></div>
<div class="error">
<div class="errorhead">
<h3>Unexpected Output From Component</h3>
</div>
<div class="errorcontent">
{$compoutput}
</div>
</div>
{/if}
<h2>Election Results</h2>
{foreach name=outer key=position item=cand from=$candidate}
<h2>{$position|capitalize}</h2>
{if count($cand) > 1}
<table>
<tr>
<th>Candidate</th>
<th>Votes</th>
</tr>
{foreach item=person from=$cand}
<tr>
<td><a href="{$person.manifesto_link}">{$person.realname}</a> ({$person.username})</td>
<td style="text-align: right;">{$person.votes}</td>
</tr>
{/foreach}
</table>
{else}
There is no vote for {$position|capitalize} as only one candidate was nominated:
<br/>
<a href="{$cand.0.manifesto_link}">{$cand.0.realname}</a>
({$cand.0.username})
<br/>
{/if}
{/foreach}
<p>Please use the form below to cast your votes for the {$election_year}
SUCS executive committee. Note that you have to be a <strong>current student
member</strong> of SUCS in order for your vote to be valid.<br/>
(Click on a candidate's name to view their manifesto)</p>
<form method="post" action="{$smarty.server.REQUEST_URI}">
{foreach name=outer key=position item=cand from=$candidate}
<h2>{$position|capitalize}</h2>
{if count($cand) > 1}
{foreach item=person from=$cand}
<input type="radio" name="{$position}" value="{$person.username}" id="{$position}{$person.username}"/>
<label for="{$position}{$person.username}"><a href="{$person.manifesto_link}">{$person.realname}</a>
({$person.username})</label>
<br/>
{/foreach}
<input type="radio" name="{$position}" value="abstain" id="{$position}abstain"/>
<label for="{$position}abstain"><em>Abstain</em></label>
<br/>
{else}
There is no vote for {$position|capitalize} as only one candidate was nominated:
<br/>
<a href="{$cand.0.manifesto_link}">{$cand.0.realname}</a>
({$cand.0.username})
{/if}
{/foreach}
<div class="row">
<label for="vote_passwd">SUCS Password:</label>
<span class="textinput">
<input name="vote_passwd" id="vote_passwd" type="password"/>
<div class="note">Your SUCS password is required to ensure that the vote is from you.</div>
</span>
</div>
<div class="row">
<span class="textinput">
<input type="submit" value="Cast Votes" name="submit"/>
</span>
</div>
</form>
&nbsp;
\ No newline at end of file
{if $editable}
<div style="float: right">
<a href="{$baseurl}/Community/Events/{$event.category}_{$event.id}?action=edit">(Edit)</a>
</div>
{/if}
<div>
<h2 style="text-align:left;display:inline">What?</h2>
<h1 style="text-align:right;display:inline">{$event.name}</h1>
</div>
<br>
<div>
<h2 style="text-align:left;display:inline">Where?</h2>
<h1 style="text-align:right;display:inline">{$event.location}</h1>
</div>
<br>
<div>
<h2 style="text-align:left;display:inline">When?</h2>
<h1 style="text-align:right;display:inline">{$event.whn|date_format:"l \t\h\e jS \o\f F Y \a\t h:i:s A"}{if $event.show_time},{$event.whn_timestamp|date_format:"%H:%M"}{/if}</h1>
</div>
<h1>Why?</h1>
<p1>
{$event.description}
</p1>
\ No newline at end of file
<form class="admin" method="post" action="{$baseurl}{$path}">
<input type="hidden" name="action" value="save"/>
<input type="hidden" name="id" value="{$event.id}"/>
<div class="row">
<label for="name">Event Name</label>
<span class="textinput"><input type="text" name="name" {if $event.name}value="{$event.name}"{/if} /></span>
</div>
<div class="row">
<label>Date</label>
<span class="textinput">{html_select_date end_year='+2' }</span>
</div>
<div class="row">
<label>Time</label>
<span class="textinput">{html_select_time display_seconds=false minute_interval=5}</span>
</div>
<div class="row">
<label for="category">Event Type</label>
<span class="textinput">
{foreach from=$event_categories item=category}
<input type="radio" name="category" value="{$category}"
{if $category eq $event.category}checked="checked"{/if} />
{$category}
<br/>
{/foreach}
</span>
</div>
<div class="row">
<label for="location">Location</label>
<span class="textinput"><input type="text" name="location" {if $event.location}value="{$event.location}"{/if} /></span>
</div>
<div class="row">
<label for="description">Description</label>
<span class="textinput"><textarea name="description" cols="50"
rows="15">{if $event.description}{$event.description}{/if}</textarea></span>
</div>
<div class="row">
<input type="submit" value="Save"/>
</div>
</form>
\ No newline at end of file
{include file="../static/fragments/Events.txt"}
<div class="box">
<div class="boxhead">
<h3>Got an idea?</h3>
</div>
<div class="boxcontent">
<p>Got an idea for a event you'd like to see hosted?
Email {mailto address="exec@sucs.org" encode='javascript'}</p>
</div>
<div class="hollowfoot">
<div>
<div></div>
</div>
</div>
</div>
{if $editable}
<a href="?action=create">Add Event</a>
{/if}
<div class="box">
<div class="boxhead"><h2>Upcoming Events</h2></div>
<div class="boxcontent">
{if $events|@count < 1}
<p>No events :(</p>
<p>Pester {mailto address="exec@sucs.org" encode='javascript'} to organise some!</p>
{else}
{foreach from=$events item=event}
<h2>
<a href="{$baseurl}/Community/Events/{$event.category}_{$event.id}">{$event.name}</a>
</h2>
<div>
<b>{$event.whn_timestamp|date_format:"l, jS F Y"}{if $event.show_time},{$event.whn_timestamp|date_format:"%H:%M"}{/if}</b>
</div>
<div>at <b>{$event.location}</b></div>
<div><p>{$event.description}</p></div>
{/foreach}
{/if}
</div>
<div class="hollowfoot">
<div>
<div></div>
</div>
</div>
</div>
<hr/>
<h2>Recent Events</h2>
<p>
<small>You missed them. Too bad!</small>
</p>
{foreach from=$oldevents item=event}
<h4><a href="{$baseurl}/Community/Events/{$event.category}_{$event.id}">{$event.name}</a> -
<small>{$event.whn_timestamp|date_format:"%A, %e %B"}</small>
</h4>
{/foreach}
{* form logged-in members can fill in to give us feedback on a website page *}
<div class="cbb">
{if $feedbacked == true}
<h3>Thanks!</h3>
<p>Your comments have been sent to the SUCS admin team</p>
{else}
<h4>Something you think we should know?</h4>
<form action="{$baseurl}{$path}" method="post">
<input type="hidden" name="action" value="feedback" />
<p>Spotted a mistake on this page? Have some useful info? Let us know below:</p>
<div>
<span class="textinput"><textarea id="pagefeedback" name="feedback" cols="25" rows="6"></textarea></span>
</div>
<div>
<span class="textinput"><input type="submit" value="Feed-back!" /></span>
</div>
</form>
{/if}
{if $feedbacked == true}
<h3>Thanks!</h3>
<p>Your comments have been sent to the SUCS admin team</p>
{else}
<h3>Something you think we should know?</h3>
<form name="feedback" action="{$baseurl}{$path}" method="post">
<input type="hidden" name="action" value="feedback"/>
<p>Spotted a mistake on this page? Have some useful info? Let us know below:</p>
<div>
<span class="textinput"><textarea id="pagefeedback" name="feedback" cols="10"
rows="6"></textarea></span>
</div>
<div>
<span class="textinput"><input type="submit" value="Feed back!"/></span>
</div>
</form>
{/if}
</div>
</div>
<div id="navigation">
{include file="menu.tpl"}
{include file="search.cy.tpl"}
{include file="valid.cy.tpl"}
</div>
<div id="navigation">
{include file="menu.tpl"}
{include file="search.cy.tpl"}
{include file="valid.cy.tpl"}
</div>
<div class="clear">&nbsp;</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="cornerBottomLeft">
<div class="cornerBottomRight">
<div class="cornerBottomLeft">
<div class="cornerBottomRight">
<p>
Cynnalwyd y safle hwn a cynllunwyd gan CGPA. Mae personau perthnasol sy biau y barnau rhain nid y gymdeithas.
</p>
</div>
</div>
<p>
Cynnalwyd y safle hwn a cynllunwyd gan CGPA. Mae personau perthnasol sy biau y barnau rhain nid y
gymdeithas.
</p>
</div>
</div>
</div>
{if $debug}{debug}{/if}
......
</div>
<div id="navigation">
{include file="menu.tpl"}
{include file="menu.tpl"}
{if $session->loggedin}
<div style="resize: both;">
{include file="feedback.tpl"}
</div>
{/if}
{include file="search.tpl"}
{* include file="valid.tpl" *}
{* include file="valid.tpl" *}
</div>
</div>
<div class="clear"></div>
</div>
<div id="footer">
<div class="cornerBottomLeft">
<div class="cornerBottomRight">
<p>Site designed and maintained by SUCS. All opinions expressed are those of the relevant individual and not of the society.</p>
{if isset($totaltime)}<p>Script executed in {$totaltime} seconds</p>{/if}
</div>
</div>
<div class="cornerBottomLeft">
<div class="cornerBottomRight">
<p>Site designed and maintained by SUCS. All opinions expressed are those of the relevant individual and not
of the society.</p>
{if isset($totaltime)}<p>Script executed in {$totaltime} seconds</p>{/if}
</div>
</div>
</div>
{if $action=="edit"}
<!--
<script language="javascript" type="text/javascript" src="{$baseurl}/js/tinymce/jscripts/tiny_mce/tiny_mce.js"></script>
<script language="javascript" type="text/javascript" src="{$baseurl}/js/tiny_mce.js"></script>
--!>
<script language="javascript" type="text/javascript" src="{$baseurl}/js/jquery-2.1.3.min.js"></script>
<script language="javascript" type="text/javascript" src="{$baseurl}/js/ckeditor/ckeditor.js"></script>
<script language="javascript" type="text/javascript" src="{$baseurl}/js/ckeditor.js"></script>
{/if}
{if $debug}{debug}{/if}
</body>
</html>
{if count($posts) > 0 }
<div class="cbb">
<h3>Recent Forum posts</h3>
<table width="100%" class="border">
<tr>
<th>Subject</th>
<th>by</th>
</tr>
{foreach name=posts from=$posts item=post}
<tr>
<td><a href="/Community/Forum/viewtopic.php?pid={$post.last_post_id}#p{$post.last_post_id}">{$post.subject}</a></td>
<td><a href="/Community/Members/{$post.last_poster}">{$post.last_poster}</a></td>
</tr>
{/foreach}
</table>
</div>
{/if}