myaac/system/templates/guilds.change_description.html.twig
slawkens e45d27b5c7 * moved most of guilds html-in-php code to twig
* moved buttons to separate templates
* moved online search for to twig
2017-10-18 16:08:15 +02:00

12 lines
740 B
Twig

<center><h2>Change guild description</h2></center>
Here you can change description of your guild.<br/>
<form enctype="multipart/form-data" action="?subtopic=guilds&guild={{ guild.getName() }}&action=change_description" method="post">
<input type="hidden" name="todo" value="save"/>
<textarea name="description" cols="60" rows="{{ rows }}">{{ guild.getCustomField('description')|raw }}</textarea><br>
(max. {{ config.guild_description_lines_limit }} lines, max. {{ config.guild_description_chars_limit }} chars) <input type="submit" value="Save description"/></form><br/>
<br/>
<center>
<form action="?subtopic=guilds&guild='.$guild->getName().'&action=manager" method="post">
{{ include('buttons.back.html.twig') }}
</form>
</center>