Commit a3bf305c authored by Imran Hussain's avatar Imran Hussain
Browse files

Fix #23: Remove create, edit, and delete buttons from static pages.

If you want to add, modify, or delete content from the site, use the git.
Either commit directly to master or make an MR if you can't commit.
parent 07cb60c1
Loading
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -5,19 +5,19 @@
    <div id="primaryC">
        {$body}

        {if $creatable}
        {* {if $creatable}
            <p>You can <a href="?action=create">create</a> this page though.</p>
        {/if}
        {/if} *}

        {if $modified}
            <div class="edit">
                {if $editable}
                {* {if $editable}
                    <ul>
                        <li><a href="?action=delete-query">Delete</a></li>
                        <li><a href="?action=edit">Edit</a></li>
                    </ul>
                    <div class="clear"></div>
                {/if}
                {/if} *}
                Page last modified{if $modifiedby} by <a
                href="{$baseurl}/Community/Members/{$modifiedby}">{$modifiedby}</a>{/if} on {$modified}
            </div>