you could add a shortcut at the the home page that will take you there instantastly..
PHP Code:
<if condition="$bbuserinfo[usergrouid] == 6">
<a href="/admincp/template.php?s=&group=&do=modify&expandset=6">Edit Templates</a>
<else />
 
</if>
this will show a ling to edit templates for administrators only.
you could specify it to be for one user only by this:
PHP Code:
<if condition="$bbuserinfo[userid] == X">
<a href="/admincp/template.php?s=&group=&do=modify&expandset=6">Edit Templates</a>
<else />
 
</if>
'X' being your userid number...