Loading...
Skip to main content
Site identity, navigation, etc.
Log in
Username
Password
I forgot my password
CapsLock is on.
Log in
Stay in SSL mode
Navigation and related functionality and content
Related content
View template: tiki-article_types.tpl
Edit CSS
Template listing
{title admpage="articles" url="tiki-article_types.php" help=Articles}{tr}Article Types{/tr}{/title} <div class="t_navbar mb-4"> {if $tiki_p_admin eq 'y' or $tiki_p_admin_cms eq 'y'} {button href="tiki-list_articles.php" _type="link" _icon_name="list" _text="{tr}List Articles{/tr}"} {button href="tiki-admin_topics.php" _type="link" _icon_name="flag" _text="{tr}Article Topics{/tr}"} {/if} </div> <form enctype="multipart/form-data" action="tiki-article_types.php" method="post" role="form" class="form"> <h2>{tr}Add Type{/tr}</h2> <div class="mb-3 row mx-0"> <div class="input-group"> <input type="text" name="new_type" class="form-control" aria-label="{tr}Add article type{/tr} placeholder="{tr}Add article type{/tr}..."> <button type="submit" class="btn btn-secondary" name="add_type">{tr}Add{/tr}</button> </div> </div> <h2>{tr}Types{/tr}</h2> {section name=user loop=$types} <h3>{tr}{$types[user].type|escape}{/tr}</h3> <a class="link" href="tiki-view_articles.php?type={$types[user].type|escape:url}">{tr}View articles with this type{/tr}</a> <div class="table-responsive article-types mb-4"> <table class="table table-striped table-hover"> <tr> <th>{tr}Articles{/tr}</th> <th>{tr}Author rating{/tr}</th> <th>{tr}Show before publish date{/tr}</th> <th>{tr}Show after expire date{/tr}</th> <th>{tr}Heading only{/tr}</th> <th>{tr}Comments{/tr}</th> <th>{tr}Comment can rate article{/tr}</th> <th>{tr}Show image{/tr}</th> <th>{tr}Show profile picture{/tr}</th> <th>{tr}Show author{/tr}</th> <th>{tr}Show publish date{/tr}</th> </tr> <input type="hidden" name="type_array[{$types[user].type|escape}]"> <tr> <td class="integer">{$types[user].article_cnt}</td> <td class="checkbox-cell"> <input type="checkbox" class="form-check-input" aria-label="{tr}Select{/tr}" name="use_ratings[{$types[user].type|escape}]" {if $types[user].use_ratings eq 'y'}checked="checked"{/if}> </td> <td class="checkbox-cell"> <input type="checkbox" class="form-check-input" aria-label="{tr}Select{/tr}" name="show_pre_publ[{$types[user].type|escape}]" {if $types[user].show_pre_publ eq 'y'}checked="checked"{/if}> </td> <td class="checkbox-cell"> <input type="checkbox" class="form-check-input" aria-label="{tr}Select{/tr}" name="show_post_expire[{$types[user].type|escape}]" {if $types[user].show_post_expire eq 'y'}checked="checked"{/if}> </td> <td class="checkbox-cell"> <input type="checkbox" class="form-check-input" aria-label="{tr}Select{/tr}" name="heading_only[{$types[user].type|escape}]" {if $types[user].heading_only eq 'y'}checked="checked"{/if}> </td> <td class="checkbox-cell"> <input type="checkbox" class="form-check-input" aria-label="{tr}Select{/tr}" name="allow_comments[{$types[user].type|escape}]" {if $types[user].allow_comments eq 'y'}checked="checked"{/if}> </td> <td class="checkbox-cell"> <input type="checkbox" class="form-check-input" aria-label="{tr}Select{/tr}" name="comment_can_rate_article[{$types[user].type|escape}]" {if $types[user].comment_can_rate_article eq 'y'}checked="checked"{/if}> </td> <td class="checkbox-cell"> <input type="checkbox" class="form-check-input" aria-label="{tr}Select{/tr}" name="show_image[{$types[user].type|escape}]" {if $types[user].show_image eq 'y'}checked="checked"{/if}> </td> <td class="checkbox-cell"> <input type="checkbox" class="form-check-input" aria-label="{tr}Select{/tr}" name="show_avatar[{$types[user].type|escape}]" {if $types[user].show_avatar eq 'y'}checked="checked"{/if}> </td> <td class="checkbox-cell"> <input type="checkbox" class="form-check-input" aria-label="{tr}Select{/tr}" name="show_author[{$types[user].type|escape}]" {if $types[user].show_author eq 'y'}checked="checked"{/if}> </td> <td class="checkbox-cell"> <input type="checkbox" class="form-check-input" aria-label="{tr}Select{/tr}" name="show_pubdate[{$types[user].type|escape}]" {if $types[user].show_pubdate eq 'y'}checked="checked"{/if}> </td> </tr> <tr> <th>{tr}Show expire date{/tr}</th> <th>{tr}Show reads{/tr}</th> <th>{tr}Show size{/tr}</th> <th>{tr}Show topline{/tr}</th> <th>{tr}Show subtitle{/tr}</th> <th>{tr}Show source{/tr}</th> <th>{tr}Show image caption{/tr}</th> <th>{tr}Creator can edit{/tr}</th> <td colspan="3"></td> {* th changed to td to prevent ARIA empty header error *} </tr> <tr> <td class="checkbox-cell"> <input type="checkbox" class="form-check-input" aria-label="{tr}Select{/tr}" name="show_expdate[{$types[user].type|escape}]" {if $types[user].show_expdate eq 'y'}checked="checked"{/if}> </td> <td class="checkbox-cell"> <input type="checkbox" class="form-check-input" aria-label="{tr}Select{/tr}" name="show_reads[{$types[user].type|escape}]" {if $types[user].show_reads eq 'y'}checked="checked"{/if}> </td> <td class="checkbox-cell"> <input type="checkbox" class="form-check-input" aria-label="{tr}Select{/tr}" name="show_size[{$types[user].type|escape}]" {if $types[user].show_size eq 'y'}checked="checked"{/if}> </td> <td class="checkbox-cell"> <input type="checkbox" class="form-check-input" aria-label="{tr}Select{/tr}" name="show_topline[{$types[user].type|escape}]" {if $types[user].show_topline eq 'y'}checked="checked"{/if}> </td> <td class="checkbox-cell"> <input type="checkbox" class="form-check-input" aria-label="{tr}Select{/tr}" name="show_subtitle[{$types[user].type|escape}]" {if $types[user].show_subtitle eq 'y'}checked="checked"{/if}> </td> <td class="checkbox-cell"> <input type="checkbox" class="form-check-input" aria-label="{tr}Select{/tr}" name="show_linkto[{$types[user].type|escape}]" {if $types[user].show_linkto eq 'y'}checked="checked"{/if}> </td> <td class="checkbox-cell"> <input type="checkbox" class="form-check-input" aria-label="{tr}Select{/tr}" name="show_image_caption[{$types[user].type|escape}]" {if $types[user].show_image_caption eq 'y'}checked="checked"{/if}> </td> <td class="checkbox-cell"> <input type="checkbox" class="form-check-input" aria-label="{tr}Select{/tr}" name="creator_edit[{$types[user].type|escape}]" {if $types[user].creator_edit eq 'y'}checked="checked"{/if}> </td> <td class="action" colspan="3"> {if $types[user].article_cnt eq 0} <a class="tips" title=":{tr}Remove{/tr}" href="tiki-article_types.php?remove_type={$types[user].type|escape:url}"> {icon name='remove'} </a> {else} {/if} </td> </tr> </table> </div> {if $prefs.article_custom_attributes eq 'y'} <div class="table-responsive article-types mb-4"> <table class="table table-striped table-hover"> <tr> <th>{tr}Custom attribute{/tr}</th> <td></td> {* th changed to td to prevent ARIA empty header error *} </tr> {foreach from=$types[user].attributes item=att key=attname} <tr> <td>{$attname|escape}</td> <td class="action"> <a class="tips" title=":{tr}Remove{/tr}" aria-label="{tr}Remove{/tr}" href="tiki-article_types.php?att_type={$types[user].type|escape:url}&att_remove={$att.relationId|escape:url}"> {icon name='remove' alt="{tr}Remove{/tr}"} </a> </td> </tr> {/foreach} <tr> <td><input type="text" name="new_attribute[{$types[user].type|escape}]" aria-label="{tr}Custom attribute{/tr}" value="" class="form-control"></td> <td> </td> </tr> </table> </div> {/if} <div class="text-center my-3"> <input type="submit" class="btn btn-primary" name="update_type" value="{tr}Save{/tr}"> </div> {/section} </form>
Related content
Most Popular Tags
adze
american woods
axe
broadleaf
broadleaf aspen
broadleafs
community
conifers
dendrology
eco friendly
education
froe
glossary
green
green woodworking
hammer
hard wood
hard woods
hardwoods
hickory
history
how to
joinery
literature
machinery
material processing
media
merchants
mortise
people
plane
poplar
safety
shaker
shave
society
soft woods
spokeshave
sustainable
template
tenon
terminology
tools
wood
works