mirror of
https://github.com/slawkens/myaac.git
synced 2025-04-26 17:29:21 +02:00
Fixes (config.news_author, group_name|capitalize)
This commit is contained in:
parent
46c058df25
commit
a43d641b5f
@ -133,7 +133,7 @@
|
|||||||
{% include('buttons.base.html.twig') %}
|
{% include('buttons.base.html.twig') %}
|
||||||
</form>
|
</form>
|
||||||
{% else %}
|
{% else %}
|
||||||
<b>Before you can create guild you must login.</b>
|
<b>Before you can create a guild you must login.</b>
|
||||||
<br/>
|
<br/>
|
||||||
<form action="?subtopic=accountmanagement&redirect={{ getLink('guilds') }}" method="post">
|
<form action="?subtopic=accountmanagement&redirect={{ getLink('guilds') }}" method="post">
|
||||||
{% include('buttons.login.html.twig') %}
|
{% include('buttons.login.html.twig') %}
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
<img src="{{ constant('BASE_URL') }}images/news/icon_{{ icon }}.gif" class="NewsHeadlineIcon" />
|
<img src="{{ constant('BASE_URL') }}images/news/icon_{{ icon }}.gif" class="NewsHeadlineIcon" />
|
||||||
<div class="NewsHeadlineDate">{{ date|date(config.news_date_format) }} - </div>
|
<div class="NewsHeadlineDate">{{ date|date(config.news_date_format) }} - </div>
|
||||||
<div class="NewsHeadlineText">{{ title }}</div>
|
<div class="NewsHeadlineText">{{ title }}</div>
|
||||||
{% if author is not empty %}
|
{% config.news_author and if author is not empty %}
|
||||||
<div class="NewsHeadlineAuthor"><b>Author: </b><i>{{ author }}</i></div>
|
<div class="NewsHeadlineAuthor"><b>Author: </b><i>{{ author }}</i></div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
|
@ -60,7 +60,7 @@
|
|||||||
{% for member in group.members|reverse %}
|
{% for member in group.members|reverse %}
|
||||||
{% set i = i + 1 %}
|
{% set i = i + 1 %}
|
||||||
<tr bgcolor="{{ getStyle(i) }}" style="height: 32px;">
|
<tr bgcolor="{{ getStyle(i) }}" style="height: 32px;">
|
||||||
<td>{{ group.group_name }}</td>
|
<td>{{ group.group_name|capitalize }}</td>
|
||||||
|
|
||||||
{% if config.team_display_outfit %}
|
{% if config.team_display_outfit %}
|
||||||
<td>
|
<td>
|
||||||
@ -104,7 +104,7 @@
|
|||||||
{% elseif config.team_style == 2 %}
|
{% elseif config.team_style == 2 %}
|
||||||
{% for group in groupmember|reverse %}
|
{% for group in groupmember|reverse %}
|
||||||
{% if group.members is not empty %}
|
{% if group.members is not empty %}
|
||||||
<div style="text-align:center"><h2>{{ group.group_name }}</h2></div>
|
<div style="text-align:center"><h2>{{ group.group_name|capitalize }}</h2></div>
|
||||||
|
|
||||||
<table cellspacing="1" cellpadding="4" border="0" width="100%">
|
<table cellspacing="1" cellpadding="4" border="0" width="100%">
|
||||||
<tr bgcolor="{{ config.vdarkborder }}">
|
<tr bgcolor="{{ config.vdarkborder }}">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user