diff --git a/.gitignore b/.gitignore
index ed9cd99..a6fedb0 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,9 @@
 .tmp*
 .htaccess
 .settings/*
+*~
+*.orig
+git-create-branch-github.sh
+git-create-branch-origin.sh
+framework.config.php
+.project
diff --git a/features/cerberusweb.core/templates/configuration/tabs/scheduler/index.tpl b/features/cerberusweb.core/templates/configuration/tabs/scheduler/index.tpl
index f4258c7..bc9d68b 100644
--- a/features/cerberusweb.core/templates/configuration/tabs/scheduler/index.tpl
+++ b/features/cerberusweb.core/templates/configuration/tabs/scheduler/index.tpl
@@ -27,16 +27,18 @@
 	<a href="javascript:;" onclick="toggleDiv('job_{$job_id}');">{$job->manifest->name}</a>
 	
 	<div id="" style="display:block;border:1px solid rgb(200,200,200);background-color:rgb(255,255,255);padding:5px;margin:5px;">
-		{assign var=duration value=$job->getParam('duration',5)}
-		{assign var=term value=$job->getParam('term','m')}
-		Runs every: {$duration}
-		{if $term=='d'}
-			days
-		{elseif $term=='m'}
-			minutes
-		{elseif $term=='h'}
-			hours
-		{/if}<br>
+		{if $enabled}
+			{assign var=duration value=$job->getParam('duration',5)}
+			{assign var=term value=$job->getParam('term','m')}
+			Runs every: {$duration}
+			{if $term=='d'}
+				days
+			{elseif $term=='m'}
+				minutes
+			{elseif $term=='h'}
+				hours
+			{/if}<br>
+		{/if}
 		
 		Last run: {if $lastrun}{$lastrun|devblocks_date}{else}Never{/if}
 		{if $enabled && !$locked}

