Overview
Comment:Add alert message when category is empty
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk | stable
Files: files | file ages | folders
SHA3-256: bc619cd11c8ee7f4cc1aa6c15cdae8f6db3f4f5508f31e9e8f1fe5caccfa5895
User & Date: bohwaz on 2021-05-26 21:53:21
Other Links: manifest | tags
Context
2021-05-26
22:02
Fix call to non-existing function when one of the templates is not a text file check-in: 0606ed2e81 user: bohwaz tags: trunk, stable
21:53
Add alert message when category is empty check-in: bc619cd11c user: bohwaz tags: trunk, stable
21:41
Implement export of user data as ZIP file check-in: d483a6d163 user: bohwaz tags: trunk, stable
Changes

Modified src/templates/web/index.tpl from [a8040f4151] to [5ac58c5e7a].

97
98
99
100
101
102
103




104
105
106
					{/if}
				</td>
			</tr>
			{/foreach}
		</tbody>
	</table>
{/if}






{include file="admin/_foot.tpl"}







>
>
>
>



97
98
99
100
101
102
103
104
105
106
107
108
109
110
					{/if}
				</td>
			</tr>
			{/foreach}
		</tbody>
	</table>
{/if}

{if !count($categories) && !count($pages)}
	<p class="alert block">Il n'y a aucune page ou sous-catégorie dans cette catégorie.</p>
{/if}


{include file="admin/_foot.tpl"}