We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9914170 commit c70c939Copy full SHA for c70c939
modules/installed/moduleManager/moduleManager.tpl.php
@@ -43,7 +43,24 @@ class moduleManagerTemplate extends template {
43
{/if}
44
</div>
45
<h2>{name} <small>{version}</small></h2>
46
- <p>Developed by <a href="{author.url}" target="_blank">{author.name}</a></p>
+ {#if author.name}
47
+ <p>
48
+ Developed by <a href="{author.url}" target="_blank">{author.name}</a>
49
+ {#if notes} <small> - <{notes}></small>{/if}
50
+ </p>
51
+ {else}
52
53
+ Developed by:
54
55
+ <ul>
56
+ {#each author}
57
+ <li>
58
+ <a href="{url}" target="_blank">{name}</a>
59
60
+ </li>
61
+ {/each}
62
+ </ul>
63
+ {/if}
64
<div class="well">
65
{description}
66
0 commit comments