File tree 1 file changed +6
-4
lines changed
src/django_twc_toolbox/crud/templates/neapolitan
1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 7
7
{% block content %}
8
8
< div class ="sm:flex sm:items-center ">
9
9
< h1 class ="text-base font-semibold leading-6 text-gray-900 sm:flex-auto "> {{ object_verbose_name_plural|capfirst }}</ h1 >
10
- < div class ="mt-4 sm:flex-none sm:mt-0 sm:ml-16 ">
11
- < a class ="block py-2 px-3 text-sm font-semibold text-center text-white bg-indigo-600 rounded-md shadow-sm hover:bg-indigo-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-indigo-600 "
12
- href ="{{ create_view_url }} "> Add a new {{ object_verbose_name }}</ a >
13
- </ div >
10
+ {% if create_view_url %}
11
+ < div class ="mt-4 sm:flex-none sm:mt-0 sm:ml-16 ">
12
+ < a class ="block py-2 px-3 text-sm font-semibold text-center text-white bg-indigo-600 rounded-md shadow-sm hover:bg-indigo-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-indigo-600 "
13
+ href ="{{ create_view_url }} "> Add a new {{ object_verbose_name }}</ a >
14
+ </ div >
15
+ {% endif %}
14
16
</ div >
15
17
16
18
{% partialdef object-list inline=True %}
You can’t perform that action at this time.
0 commit comments