<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
	<channel>
		<title>jobberBase Community - Improved Admin layout Guide</title>
		<link>http://www.jobberbase.com/forum/topic1185-improved-admin-layout-guide.html</link>
		<description>The most recent posts in Improved Admin layout Guide.</description>
		<lastBuildDate>Fri, 07 Aug 2009 02:31:02 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title>Re: Improved Admin layout Guide</title>
			<link>http://www.jobberbase.com/forum/post6419.html#p6419</link>
			<description>Hi Michael,
I didn&#039;t have anything to do with this mod ;) I would have used div&#039;s (you know me)! Valid CSS and XHTML :D Been asked to join dev team so working on removing tables, killing bugs etc. How&#039;s JS doing? Not much change from the outside...!</description>
			<author>dummy@example.com (evertsemeijn)</author>
			<pubDate>Fri, 07 Aug 2009 02:31:02 +0000</pubDate>
			<guid>http://www.jobberbase.com/forum/post6419.html#p6419</guid>
		</item>
		<item>
			<title>Re: Improved Admin layout Guide</title>
			<link>http://www.jobberbase.com/forum/post6416.html#p6416</link>
			<description>Pretty Nice implementation. How come it was done in table&#039;s instead of clean CSS/XHTML evert you did not use tables did you?

Im thinking of course not. lol</description>
			<author>dummy@example.com (PopaWoody)</author>
			<pubDate>Thu, 06 Aug 2009 20:00:44 +0000</pubDate>
			<guid>http://www.jobberbase.com/forum/post6416.html#p6416</guid>
		</item>
		<item>
			<title>Re: Improved Admin layout Guide</title>
			<link>http://www.jobberbase.com/forum/post5899.html#p5899</link>
			<description>I would advise you to running the tutorial again on clean files.</description>
			<author>dummy@example.com (evertsemeijn)</author>
			<pubDate>Sun, 21 Jun 2009 14:54:43 +0000</pubDate>
			<guid>http://www.jobberbase.com/forum/post5899.html#p5899</guid>
		</item>
		<item>
			<title>Re: Improved Admin layout Guide</title>
			<link>http://www.jobberbase.com/forum/post5896.html#p5896</link>
			<description>Still not been able to resolve this any ideas?

Thanks in advance</description>
			<author>dummy@example.com (spikescot20057800)</author>
			<pubDate>Sun, 21 Jun 2009 11:59:37 +0000</pubDate>
			<guid>http://www.jobberbase.com/forum/post5896.html#p5896</guid>
		</item>
		<item>
			<title>Re: Improved Admin layout Guide</title>
			<link>http://www.jobberbase.com/forum/post5780.html#p5780</link>
			<description>Opps posted the wrong code. I have edited the above code to right code.</description>
			<author>dummy@example.com (spikescot20057800)</author>
			<pubDate>Sun, 14 Jun 2009 16:02:57 +0000</pubDate>
			<guid>http://www.jobberbase.com/forum/post5780.html#p5780</guid>
		</item>
		<item>
			<title>Re: Improved Admin layout Guide</title>
			<link>http://www.jobberbase.com/forum/post5779.html#p5779</link>
			<description>Try editing the post-loop.tpl in the admin folder &#039;cause this is the post-loop.tpl that&#039;s being used in the frontend...!

[quote]4. Open /admin/_templates/post-loop.tpl ...[/quote]</description>
			<author>dummy@example.com (evertsemeijn)</author>
			<pubDate>Sun, 14 Jun 2009 15:50:43 +0000</pubDate>
			<guid>http://www.jobberbase.com/forum/post5779.html#p5779</guid>
		</item>
		<item>
			<title>Re: Improved Admin layout Guide</title>
			<link>http://www.jobberbase.com/forum/post5777.html#p5777</link>
			<description>Here it is - 

[code]
{if $is_home == 1}
&lt;div&gt;&lt;a href=&quot;{$BASE_URL}&quot;&gt;&amp;laquo; home&lt;/a&gt;&lt;/div&gt;
{/if}
{if $no_categ != 1}
&lt;table id=&quot;job-posts&quot; class=&quot;job-posts&quot; cellspacing=&quot;0&quot;&gt;
{if $keywords}
	&lt;tr&gt;&lt;td colspan=&quot;3&quot; class=&quot;search_results_label&quot;&gt;
		Search results for &lt;strong&gt;{$keywords}&lt;/strong&gt;:
	&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;
    &lt;th&gt;{$translations.adminpanel.details}&lt;/th&gt;
    &lt;th&gt;{$translations.adminpanel.spotlight}&lt;/th&gt;
    &lt;th&gt;{$translations.adminpanel.edit}&lt;/th&gt;
    &lt;th&gt;{$translations.adminpanel.state}&lt;/th&gt;
    &lt;th&gt;{$translations.adminpanel.delete}&lt;/th&gt;
&lt;/tr&gt;
{if !$jobs}
        {if $CURRENT_PAGE != &#039;search&#039;}
        &lt;tr&gt;&lt;td colspan=&quot;5&quot;&gt;No jobs, yet.&lt;/td&gt;&lt;/tr&gt;
        {else}
        &lt;tr&gt;&lt;td colspan=&quot;5&quot;&gt;No jobs where found.&lt;/td&gt;&lt;/tr&gt;
        {/if}
{/if}
{foreach item=job from=$jobs name=tmp}

&lt;tr id=&quot;item{$job.id}&quot;&gt;
            &lt;td&gt;
                {if $job.type_id == $smarty.const.JOBTYPE_FULLTIME}
                &lt;img src=&quot;{$BASE_URL}img/icon-fulltime.png&quot; alt=&quot;full-time&quot; /&gt;
                {elseif $job.type_id == $smarty.const.JOBTYPE_PARTTIME}
                &lt;img src=&quot;{$BASE_URL}img/icon-parttime.png&quot; alt=&quot;part-time&quot; /&gt;
                {elseif $job.type_id == $smarty.const.JOBTYPE_FREELANCE}
                &lt;img src=&quot;{$BASE_URL}img/icon-freelance.png&quot; alt=&quot;freelance&quot; /&gt;
                {/if}
                &lt;a href=&quot;{$BASE_URL_ADMIN}job/{$job.id}/{$job.url_title}/&quot; title=&quot;{$job.title}&quot;&gt;{$job.title}&lt;/a&gt; &lt;em&gt;({$job.location})&lt;/em&gt;&lt;br /&gt;
                &lt;strong&gt;{$translations.adminpanel.date}:&lt;/strong&gt; {$job.created_on}
                &lt;strong&gt;{$translations.adminpanel.company}:&lt;/strong&gt; {$job.company}&lt;br /&gt;
            &lt;/td&gt;
            &lt;td style=&quot;font-size: 11px;&quot;&gt;
                 {if $job.is_spotlight == 0}
                    &lt;a id=&quot;activateSpotlight{$job.id}&quot; href=&quot;javascript:void(0);&quot; onclick=&quot;Jobber.SpotlightActivate(&#039;{$BASE_URL_ADMIN}activate-spotlight/&#039;, {$job.id}, {if $CURRENT_PAGE == &#039;&#039;}1{else}0{/if});&quot; title=&quot;activate-spotlight&quot;&gt;&lt;img src=&quot;{$BASE_URL}img/icon_spotlight_activate.gif&quot; alt=&quot;activate&quot; /&gt;&lt;/a&gt;
                {else}
                    &lt;a id=&quot;deactivateSpotlight{$job.id}&quot; href=&quot;javascript:void(0);&quot; onclick=&quot;Jobber.SpotlightDeactivate(&#039;{$BASE_URL_ADMIN}deactivate-spotlight/&#039;, {$job.id});&quot; title=&quot;deactivate-spotlight&quot;&gt;&lt;img src=&quot;{$BASE_URL}img/icon_spotlight_deactivate.gif&quot; alt=&quot;deactivate&quot; /&gt;&lt;/a&gt;
                {/if}
            &lt;/td&gt;
            &lt;/td&gt;
            &lt;td&gt;
                &lt;a href=&quot;{$BASE_URL_ADMIN}edit-post/{$job.id}/&quot; title=&quot;edit&quot;&gt;&lt;img src=&quot;{$BASE_URL}img/icon_edit.gif&quot; alt=&quot;edit&quot; /&gt;&lt;/a&gt;
            &lt;/td&gt;
            &lt;td&gt;
                {if $job.is_active == 0}
                    &lt;a id=&quot;activateLink{$job.id}&quot; href=&quot;javascript:void(0);&quot; onclick=&quot;Jobber.Activate(&#039;{$BASE_URL_ADMIN}activate/&#039;, {$job.id}, {if $CURRENT_PAGE == &#039;&#039;}1{else}0{/if});&quot; title=&quot;activate&quot;&gt;&lt;img src=&quot;{$BASE_URL}img/icon_accept.gif&quot; alt=&quot;activate&quot; /&gt;&lt;/a&gt;
                {else}
                    &lt;a id=&quot;deactivateLink{$job.id}&quot; href=&quot;javascript:void(0);&quot; onclick=&quot;Jobber.Deactivate(&#039;{$BASE_URL_ADMIN}deactivate/&#039;, {$job.id});&quot; title=&quot;deactivate&quot;&gt;&lt;img src=&quot;{$BASE_URL}img/icon_deactivate.gif&quot; alt=&quot;deactivate&quot; /&gt;&lt;/a&gt;
                {/if}&amp;nbsp;
            &lt;/td&gt;
            &lt;td&gt;
                &lt;a href=&quot;javascript:void(0);&quot; onclick=&quot;Jobber.Delete(&#039;{$BASE_URL_ADMIN}delete/&#039;, {$job.id});&quot; title=&quot;delete&quot;&gt;&lt;img src=&quot;{$BASE_URL}img/icon-delete.png&quot; alt=&quot;delete&quot; /&gt;&lt;/a&gt;
            &lt;/td&gt;
        &lt;/tr&gt;
    {/foreach}
&lt;/table&gt;
&lt;br/&gt;
{$pages}
{/if}
&lt;strong&gt;{$translations.adminpanel.date}:&lt;/strong&gt; {$latest_jobs.created_on}
                &lt;strong&gt;{$translations.adminpanel.company}:&lt;/strong&gt; {$latest_jobs.company}&lt;br /&gt;
            &lt;/td&gt;
            &lt;/td&gt;
            &lt;td&gt;
                &lt;a href=&quot;{$BASE_URL_ADMIN}edit-post/{$latest_jobs.id}/&quot; title=&quot;edit&quot;&gt;&lt;img src=&quot;{$BASE_URL}img/icon_edit.gif&quot; alt=&quot;edit&quot; /&gt;&lt;/a&gt;
            &lt;/td&gt;
            &lt;td&gt;
                {if $latest_jobs.is_active == 0}
                    &lt;a id=&quot;activateLink{$latest_jobs.id}&quot; href=&quot;javascript:void(0);&quot; onclick=&quot;Jobber.Activate(&#039;{$BASE_URL_ADMIN}activate/&#039;, {$latest_jobs.id}, {if $CURRENT_PAGE == &#039;&#039;}1{else}0{/if});&quot; title=&quot;activate&quot;&gt;&lt;img src=&quot;{$BASE_URL}img/icon_accept.gif&quot; alt=&quot;activate&quot; /&gt;&lt;/a&gt;
                {else}
                    &lt;a id=&quot;deactivateLink{$latest_jobs.id}&quot; href=&quot;javascript:void(0);&quot; onclick=&quot;Jobber.Deactivate(&#039;{$BASE_URL_ADMIN}deactivate/&#039;, {$latest_jobs.id});&quot; title=&quot;deactivate&quot;&gt;&lt;img src=&quot;{$BASE_URL}img/icon_deactivate.gif&quot; alt=&quot;deactivate&quot; /&gt;&lt;/a&gt;
                {/if}&amp;nbsp;
            &lt;/td&gt;
            &lt;td&gt;
                &lt;a href=&quot;javascript:void(0);&quot; onclick=&quot;Jobber.Delete(&#039;{$BASE_URL_ADMIN}delete/&#039;, {$latest_jobs.id});&quot; title=&quot;delete&quot;&gt;&lt;img src=&quot;{$BASE_URL}img/icon-delete.png&quot; alt=&quot;delete&quot; /&gt;&lt;/a&gt;
            &lt;/td&gt;
        &lt;/tr&gt;
    {/foreach}
    &lt;/table&gt;
    &lt;br /&gt;
    {/if}
{literal}
&lt;script type=&quot;text/javascript&quot;&gt;
	$(document).ready(function()
	{
		$(&quot;.job-posts tr&quot;).mouseover(function() {$(this).addClass(&quot;over&quot;);}).mouseout(function() {$(this).removeClass(&quot;over&quot;);});
		$(&quot;.job-posts tr:odd&quot;).addClass(&quot;alt&quot;);
	});
&lt;/script&gt;
{/literal}
[/code]</description>
			<author>dummy@example.com (spikescot20057800)</author>
			<pubDate>Sun, 14 Jun 2009 15:34:43 +0000</pubDate>
			<guid>http://www.jobberbase.com/forum/post5777.html#p5777</guid>
		</item>
		<item>
			<title>Re: Improved Admin layout Guide</title>
			<link>http://www.jobberbase.com/forum/post5775.html#p5775</link>
			<description>Could you post your first 50-60 lines of the file? The way you hacked it of course...!</description>
			<author>dummy@example.com (evertsemeijn)</author>
			<pubDate>Sun, 14 Jun 2009 15:00:10 +0000</pubDate>
			<guid>http://www.jobberbase.com/forum/post5775.html#p5775</guid>
		</item>
		<item>
			<title>Re: Improved Admin layout Guide</title>
			<link>http://www.jobberbase.com/forum/post5774.html#p5774</link>
			<description>ok i&#039;ll add a {/if} on line 46

EDIT:

That didn&#039;t work so i restarted on that file and edited it 3 times but still get the same error message.</description>
			<author>dummy@example.com (spikescot20057800)</author>
			<pubDate>Sun, 14 Jun 2009 13:55:10 +0000</pubDate>
			<guid>http://www.jobberbase.com/forum/post5774.html#p5774</guid>
		</item>
		<item>
			<title>Re: Improved Admin layout Guide</title>
			<link>http://www.jobberbase.com/forum/post5772.html#p5772</link>
			<description>@spikescot20057800 The error says that you have an unclosed {/if} around/on line 46 which was opened on line 4 in the file _templates/post-loop.tpl.

Looks like you need to add or move an {/if} to fix it. Maybe now can find the error yourself :D</description>
			<author>dummy@example.com (evertsemeijn)</author>
			<pubDate>Sun, 14 Jun 2009 13:52:49 +0000</pubDate>
			<guid>http://www.jobberbase.com/forum/post5772.html#p5772</guid>
		</item>
		<item>
			<title>Re: Improved Admin layout Guide</title>
			<link>http://www.jobberbase.com/forum/post5771.html#p5771</link>
			<description>Iv&#039;e gone wrong somewhere and don&#039;t know where as i get this error message:

[code]
Fatal error: Smarty error: [in posts-loop.tpl line 46]: syntax error: mismatched tag {/foreach}. expected {/if} (opened line 4). (Smarty_Compiler.class.php, line 2284) in /home/sites/dressmeupuk.com/public_html/jobs/_includes/smarty/libs/Smarty.class.php on line 1088[/code]</description>
			<author>dummy@example.com (spikescot20057800)</author>
			<pubDate>Sun, 14 Jun 2009 13:49:43 +0000</pubDate>
			<guid>http://www.jobberbase.com/forum/post5771.html#p5771</guid>
		</item>
		<item>
			<title>Re: Improved Admin layout Guide</title>
			<link>http://www.jobberbase.com/forum/post5608.html#p5608</link>
			<description>iqglobal, did you solve the IE8 problem, or are you using compatibility mode now? If you&#039;ve found what caused it I&#039;ll update the guide, else I&#039;ll have a look on how to fix it.</description>
			<author>dummy@example.com (Chronos)</author>
			<pubDate>Fri, 29 May 2009 09:13:07 +0000</pubDate>
			<guid>http://www.jobberbase.com/forum/post5608.html#p5608</guid>
		</item>
		<item>
			<title>Re: Improved Admin layout Guide</title>
			<link>http://www.jobberbase.com/forum/post5606.html#p5606</link>
			<description>Thanks - Works fine for me</description>
			<author>dummy@example.com (McLovin)</author>
			<pubDate>Thu, 28 May 2009 22:35:28 +0000</pubDate>
			<guid>http://www.jobberbase.com/forum/post5606.html#p5606</guid>
		</item>
		<item>
			<title>Re: Improved Admin layout Guide</title>
			<link>http://www.jobberbase.com/forum/post5298.html#p5298</link>
			<description>Apologies, I got it solved; appears to be a compatability issue between IE7 and IE8</description>
			<author>dummy@example.com (iqglobal)</author>
			<pubDate>Mon, 11 May 2009 20:14:55 +0000</pubDate>
			<guid>http://www.jobberbase.com/forum/post5298.html#p5298</guid>
		</item>
		<item>
			<title>Re: Improved Admin layout Guide</title>
			<link>http://www.jobberbase.com/forum/post5286.html#p5286</link>
			<description>Hi Paul,

Is there an exact error you get? ...I used the exact codes seen above and all is working fine for me, really had no issue.

Regards,
Ruben</description>
			<author>dummy@example.com (jobsin)</author>
			<pubDate>Mon, 11 May 2009 01:09:26 +0000</pubDate>
			<guid>http://www.jobberbase.com/forum/post5286.html#p5286</guid>
		</item>
	</channel>
</rss>

