root/templates/ally.html

Revision ba4c53f5ef1bb4683f4126398115a978f3cf2367, 19.3 kB (checked in by Christopher Jung <bktheg@web.de>, 9 months ago)

Allianzen: Umstellung auf neue Menuestruktur

  • Property mode set to 100644
Line 
1 {if ally}
2         <div class="smallfont">
3                 <br />
4         </div>
5         {if ally.message}
6                 {!table_begin 400,center}
7                         <span style="color:red">{ally.message}</span>
8                 {!table_end}
9                 <div class="smallfont">
10                         <br />
11                 </div>
12         {/endif}
13         {if ally.statusmessage}
14                 {!table_begin 400,center}
15                         {ally.statusmessage}
16                         {if ally.statusmessage.ask.url1}
17                                 <br />
18                                 <a class="ok" href="./ds?module=ally&amp;sess={global.sess}{ally.statusmessage.ask.url1}">Ja</a> -
19                                 <a class="error" href="./ds?module=ally&amp;sess={global.sess}{ally.statusmessage.ask.url2}">Nein</a>
20                         {/endif}
21                 {!table_end}
22                 <div class="smallfont">
23                         <br />
24                 </div>
25         {/endif}
26         {if show.allgemein}
27                 <div class="smallfont">
28                         <img src="{URL}data/logos/ally/{ally.id}.gif" width="75" height="75" alt="Kein Allylogo vorhanden" /><br /><br />
29                         <span style="color:#cccccc">{ally.description}</span><br /><br />
30                 </div>
31                 <table class="noBorder">
32                 <tr>
33                         <td class="noBorderS" valign="top">
34                                 Gegr&uuml;ndet: {ally.founded}<br />
35                                 Gewonnene Schlachten: {ally.wonBattles}<br />
36                                 Verlorene Schlachten: {ally.lostBattles}<br />
37                                 Zerst&ouml;rte Schiffe: {ally.destroyedShips}<br />
38                                 Verlorene Schiffe: {ally.lostShips}<br />
39                                 Mitglieder: {ally.membercount}<br /><br />
40                         </td>
41                         <td class="noBorderS" style="width:50px">&nbsp;&nbsp;&nbsp;&nbsp;</td>
42                         <td class="noBorderS" valign="top">
43                                 {if ally.items.list}
44                                         Items:<br />
45                                         <!-- BEGIN ally.items.listitem -->
46                                                 <img style="vertical-align:middle" src="{res.image}" alt="" />
47                                                 {res.name}<br />
48                                         <!-- END ally.items.listitem -->
49                                 {/endif}
50                         </td>
51                 </tr>
52                 </table>
53                 <div class="smallfont">
54                         <br />
55                 </div>
56                
57                 <table class="ally" cellspacing="2" cellpadding="2">
58                 <tr>
59                         <td class="allyData"><span style="font-weight:bold">{ally.pname}:</span></td>
60                         <td class="allyData">
61                                 {!link_to $ally.president.name, default, module:userprofile, css_class:profile, user:$ally.president.id}
62                         </td>
63                 </tr>
64                 {if ally.posten.list}
65                         <!-- BEGIN ally.posten.listitem -->
66                                 <tr>
67                                         <td class="allyData">{ally.posten.name}:</td>
68                                         <td class="allyData">
69                                                 {!link_to $ally.posten.user.name, default, module:userprofile, css_class:profile, user:$ally.posten.user.id}
70                                         </td>
71                                 </tr>
72                         <!-- END ally.posten.listitem -->
73                 {/endif}
74                
75                 {if ally.addmembers.list}
76                         <tr>
77                                 <td class="allyData" valign="top">Weitere Mitglieder:</td>
78                                 <td class="allyData">
79                                         <!-- BEGIN ally.addmembers.listitem -->
80                                                 {!link_to $ally.addmembers.name, default, module:userprofile, css_class:profile, user:$ally.addmembers.id}
81                                                 <br />
82                                         <!-- END ally.addmembers.listitem -->
83                                 </td>
84                         </tr>
85                 {/endif}
86                 </table>
87                 <div class="smallfont">
88                         <br />
89                 </div>
90         {/endif}
91         {if show.members}
92                 {if user.president}
93                         {!table_begin 600,left}
94                 {else}
95                         {!table_begin 400,left}
96                 {/endif}
97                
98                 <table class="noBorderX" width="100%">
99                 <tr>
100                         <td {if user.president}colspan="3"{/endif} class="noBorderX">
101                                 Mitglieder:
102                         </td>
103                         <td class="noBorderX" align="right">
104                                 {!link_to (An alle schreiben), default, module:comm, to:ally}
105                         </td>
106                 </tr>
107                 <!-- BEGIN show.members.listitem -->
108                         <tr>
109                         {if user.president}
110                                 <td colspan="2" class="noBorderX">
111                                         <a class="profile" style="color:#c7c7c7;white-space:nowrap" onmouseover="return overlib('Aktivit&auml;t: <span style=\'font-weight:bold\'>{show.members.inaktstatus}</span>',TIMEOUT,0,DELAY,400);" onmouseout="return nd();" href="./ds?module=userprofile&amp;sess={global.sess}&amp;user={show.members.id}">
112                                                 {show.members.name}
113                                         </a>
114                                         ({show.members.id})
115                                 </td>
116                                 <td class="noBorderX">
117                                         {!link_to rauswerfen, kick, kick:$show.members.id}
118                                 </td>
119                                 <td class="noBorderX">
120                                         {!link_to zum Pr&auml;sidenten ernenne, newPraesi, presn:$show.members.id}
121                                 </td>
122                         {else}
123                                 <td colspan="2" class="noBorderX">
124                                         {!link_to $show.members.name, default, module:userprofile, css_class:profile, css_style:white-space:nowrap, user:$show.members.id}
125                                         ({show.members.id})
126                                 </td>
127                         {/endif}
128                         </tr>
129                 <!-- END show.members.listitem -->
130                 </table>
131                 {!table_end}
132         {/endif}
133         {if show.einstellungen}
134                 {!table_begin 550,left}
135                         Daten &auml;ndern:<br />
136                         <form action="./ds" method="post">
137                         <table class="noBorderX">
138                         <tr>
139                                 <td class="noBorderX">Name:</td>
140                                 <td class="noBorderX"><input name="name" type="text" size="50" style="width:350px" value="{ally.plainname}" /></td>
141                         </tr>
142                         <tr>
143                                 <td class="noBorderX">Beschreibung:</td>
144                                 <td class="noBorderX">
145                                         <textarea name="desc" rows="10" cols="45" style="width:350px">{ally.description}</textarea>
146                                 </td>
147                         </tr>
148                         <tr>
149                                 <td class="noBorderX">Homepage:</td>
150                                 <td class="noBorderX"><input name="hp" type="text" size="50" style="width:350px" value="{ally.hp}" /></td>
151                         </tr>
152                         <tr>
153                                 <td class="noBorderX">Allytag:</td>
154                                 <td class="noBorderX"><input name="allytag" type="text" size="50" style="width:350px" maxlength="255" value="{ally.allytag}" /></td>
155                         </tr>
156                         <tr>
157                                 <td class="noBorderX">Pr&auml;sident:</td>
158                                 <td class="noBorderX"><input name="praesi" type="text" size="50" style="width:350px" maxlength="100" value="{ally.pname}" /></td>
159                         </tr>
160                         <tr>
161                                 <td class="noBorderX">Basen anzeigen (Sternenkarte):</td>
162                                 <td class="noBorderX"><input name="showastis" type="checkbox" value="1" {if ally.showastis}checked="checked"{/endif} /></td>
163                         </tr>
164                         <tr>
165                                 <td class="noBorderX">Eigene GTU-Bieter anzeigen:</td>
166                                 <td class="noBorderX"><input name="showGtuBieter" type="checkbox" value="1" {if ally.showgtubieter}checked="checked"{/endif} /></td>
167                         </tr>
168                         <tr>
169                                 <td class="noBorderX">Gemeinsame Awac-LRS:</td>
170                                 <td class="noBorderX"><input name="showlrs" type="checkbox" value="1" {if ally.showlrs}checked="checked"{/endif} /></td>
171                         </tr>
172                         <tr>
173                                 <td align="center" colspan="2" class="noBorderX">
174                                         {!form_create_hidden changeSettings}
175                                         <input type="submit" value="Daten &auml;ndern" style="width:300px" />
176                                 </td>
177                         </tr>
178                         </table>
179                         <br />
180                         <span style="font-size:10px">
181                                 <span style="font-weight:bold">Hinweis:</span> F&uuml;r Namen, Beschreibung & Allytag k&ouml;nnen die Com-Net Tags verwendet werden<br /><br />
182                                 <span style="font-weight:bold">Hinweise (Allytags):</span> F&uuml;r den Allytag existiert au&szlig;erdem noch der Tag [name], welcher hinterher automatisch durch den entsprechenden Spielernamen ersetzt wird!<br />
183                         </span>
184                 {!table_end}
185                 </form>
186                 <div class="smallfont">
187                         <br />
188                         <br />
189                 </div>
190                        
191                 {!table_begin 450,left}
192                         Allianzlogo hochladen:<br />
193                         <form enctype="multipart/form-data" action="./ds" method="post">
194                                 <input type="hidden" name="MAX_FILE_SIZE" value="307200" />
195                                 <input name="logofile" type="file" />
196                                 {!form_create_hidden uploadLogo}
197                                 &nbsp;<input type="submit" value="Hochladen" /><br />
198                                 gif-format; 75x75; max 300kb
199                         </form>
200                 {!table_end}
201                 <div class="smallfont">
202                         <br />
203                         <br />
204                 </div>
205                
206                 <script type="text/javascript">
207                 <!--
208                         function channelSelectChanged(type,id) {
209                                 if( type == 'read' ) {
210                                         type = 'Read';
211                                 }
212                                 else {
213                                         type = 'Write';
214                                 }
215
216                                 element = document.getElementById('channelSelect'+type+id);
217
218                                 if( element.options[element.options.selectedIndex].value == 'player' ) {
219                                         document.getElementById('channelACL'+type+id).style.visibility='visible';
220                                         document.getElementById('channelACL'+type+id).style.display='block';
221                                 }
222                                 else {
223                                         document.getElementById('channelACL'+type+id).style.visibility='hidden';
224                                         document.getElementById('channelACL'+type+id).style.display='none';
225                                 }
226                         }
227                 -->
228                 </script>
229                
230                 <table class="noBorder">
231                 <tr>
232                         <!-- BEGIN show.einstellungen.channels.listitem -->
233                                 <td class="noBorder" style="width:300px; vertical-align:top">
234                                         {!table_begin 320,left}
235                                                 <div align="center">
236                                                         {show.einstellungen.channels.index}. Com-Net Frequenz -
237                                                         {if show.einstellungen.channels.id}
238                                                                 {!link_to L&ouml;schen, deleteChannel, css_class:error, channel:$show.einstellungen.channels.id}
239                                                         {/endif}
240                                                 </div>
241                                                 <form action="./ds" method="post">
242                                                         {if show.einstellungen.channels.id}
243                                                                 {!form_create_hidden editChannel}
244                                                         {else}
245                                                                 {!form_create_hidden createChannel}
246                                                         {/endif}
247                                                         <table class="noBorderX">
248                                                         <tr>
249                                                                 <td class="noBorderX">Name:</td>
250                                                                 <td class="noBorderX">
251                                                                         <input type="text" name="name" value="{show.einstellungen.channels.name}" length="60" size="30" style="width:180px" />
252                                                                         {if show.einstellungen.channels.id}
253                                                                                 <input type="hidden" name="edit" value="{show.einstellungen.channels.id}" />
254                                                                         {else}
255                                                                                 <input type="hidden" name="create" value="1" />
256                                                                         {/endif}
257                                                                 </td>
258                                                         </tr>
259                                                         <tr>
260                                                                 <td class="noBorderX" style="vertical-align:top">Lesen:</td>
261                                                                 <td class="noBorderX">
262                                                                         <select id="channelSelectRead{show.einstellungen.channels.id}" name="read" size="1" onchange="channelSelectChanged('read','{show.einstellungen.channels.id}')"  style="width:180px">   
263                                                                                 {if show.einstellungen.channels.readall}
264                                                                                         <option selected="selected" value="all">Alle</option>
265                                                                                         <option value="ally">Allianz</option>
266                                                                                         <option value="player">Einzelne Spieler</option>
267                                                                                 {else}
268                                                                                         {if show.einstellungen.channels.readally}
269                                                                                                 <option value="all">Alle</option>
270                                                                                                 <option selected="selected" value="ally">Allianz</option>
271                                                                                                 <option value="player">Einzelne Spieler</option>
272                                                                                         {else}
273                                                                                                 <option value="all">Alle</option>
274                                                                                                 <option value="ally">Allianz</option>
275                                                                                                 <option selected="selected" value="player">Einzelne Spieler</option>
276                                                                                         {/endif}
277                                                                                 {/endif}
278                                                                         </select><br />
279                                                                         <div id="channelACLRead{show.einstellungen.channels.id}"
280                                                                         {if show.einstellungen.channels.readids}
281                                                                                 style="visibility:visible; border:1px solid #a7a7a7; padding:5px; margin-top:5px; display:block">
282                                                                         {else}
283                                                                                 style="visibility:hidden; border:1px solid #a7a7a7; padding:5px; margin-top:5px; display:none">
284                                                                         {/endif}
285                                                                                 <input type="text" name="readids" value="{show.einstellungen.channels.readids}" size="30" style="width:170px" /><br />
286                                                                                 <span style="font-size:12px">Spieler-IDs, durch Kommata getrennt, eingeben</span>
287                                                                         </div>
288                                                                 </td>
289                                                         </tr>
290                                                         <tr>
291                                                                 <td class="noBorderX" style="vertical-align:top">Schreiben:</td>
292                                                                 <td class="noBorderX">
293                                                                         <select id="channelSelectWrite{show.einstellungen.channels.id}" name="write" size="1" onchange="channelSelectChanged('write','{show.einstellungen.channels.id}')"  style="width:180px">
294                                                                                 {if show.einstellungen.channels.writeall}
295                                                                                         <option selected="selected" value="all">Alle</option>
296                                                                                         <option value="ally">Allianz</option>
297                                                                                         <option value="player">Einzelne Spieler</option>
298                                                                                 {else}
299                                                                                         {if show.einstellungen.channels.writeally}
300                                                                                                 <option value="all">Alle</option>
301                                                                                                 <option selected="selected" value="ally">Allianz</option>
302                                                                                                 <option value="player">Einzelne Spieler</option>
303                                                                                         {else}
304                                                                                                 <option value="all">Alle</option>
305                                                                                                 <option value="ally">Allianz</option>
306                                                                                                 <option selected="selected" value="player">Einzelne Spieler</option>
307                                                                                         {/endif}
308                                                                                 {/endif}
309                                                                         </select><br />
310                                                                         <div id="channelACLWrite{show.einstellungen.channels.id}"
311                                                                         {if show.einstellungen.channels.writeids}
312                                                                                 style="visibility:visible; border:1px solid #a7a7a7; padding:5px; margin-top:5px; display:block">
313                                                                         {else}
314                                                                                 style="visibility:hidden; border:1px solid #a7a7a7; padding:5px; margin-top:5px; display:none">
315                                                                         {/endif}
316                                                                                 <input type="text" name="writeids" value="{show.einstellungen.channels.writeids}" size="30" style="width:170px" /><br />
317                                                                                 <span style="font-size:12px">Spieler-IDs, durch Kommata getrennt, eingeben</span>
318                                                                         </div>
319                                                                 </td>
320                                                         </tr>
321                                                         <tr>
322                                                                 <td colspan="2" class="noBorderX" align="center">
323                                                                         <input type="submit" value="{if show.einstellungen.channels.id}&auml;ndern{else}erstellen{/endif}" style="width:200px" />
324                                                                 </td>
325                                                         </tr>
326                                                         </table>
327                                                 </form>
328                                         {!table_end}
329                                 </td>
330                         <!-- END show.einstellungen.channels.listitem -->
331                 </tr>
332                 </table>
333                 <div class="smallfont">
334                         <br />
335                         {!link_to Allianz aufl&ouml;sen, kill, css_class:error}
336                 </div>
337         {/endif}
338         {if show.posten}
339                 {!table_begin 600,left}
340                         <table class="noBorderX" width="100%">
341                         <tr>
342                                 <td colspan="2" class="noBorderX">Posten bearbeiten:</td>
343                                 <td class="noBorderX" align="right">{show.posten.count} von {show.posten.maxcount}</td>
344                         </tr>
345                         <tr>
346                                 <td class="noBorderX" style="width:150px">Name</td>
347                                 <td class="noBorderX" style="width:250px">Spieler</td>
348                                 <td class="noBorderX">&nbsp;</td>
349                         </tr>
350                         <!-- BEGIN show.posten.modify.listitem -->
351                                 <form action="./ds" method="post">
352                                 <tr>
353                                         <td class="noBorderX"><span class="nobr">{show.posten.modify.name}&nbsp;</span></td>
354                                         <td class="noBorderX">
355                                                 <select size="1" name="user" style="width:220px">
356                                                         <!-- BEGIN show.posten.modify.userlist.listitem -->
357                                                                         <option value="{show.posten.modify.userlist.id}" {if show.posten.modify.userlist.selected}selected="selected"{/endif}>{show.posten.modify.userlist.name}</option>
358                                                         <!-- END show.posten.modify.userlist.listitem -->
359                                                 </select>
360                                         </td>
361                                         <td class="noBorderX">
362                                                 <span class="nobr">
363                                                         {!form_create_hidden editPosten, id:$show.posten.modify.id}
364                                                         <input type="submit" value="speichern" />
365                                                         &nbsp;[{!link_to x, deletePosten, css_class:error, postenid:$show.posten.modify.id}]
366                                                 </span>
367                                         </td>
368                                 </tr>
369                                 </form>
370                         <!-- END show.posten.modify.listitem -->
371                         </table>
372                         <br />
373                 {!table_end}
374                 <div class="smallfont">
375                         <br />
376                         <br />
377                 </div>
378                 {if show.posten.addposten}
379                         {!table_begin 600,left}
380                                 <table class="noBorderX" width="100%">
381                                 <tr>
382                                         <td colspan="3" class="noBorderX">Posten erstellen:</td>
383                                 </tr>
384                                 <tr>
385                                         <td class="noBorderX">Name</td>
386                                         <td class="noBorderX">Spieler</td>
387                                         <td class="noBorderX">&nbsp;</td>
388                                 </tr>
389                                 <form action="./ds" method="post">
390                                 <tr>
391                                         <td class="noBorderX"><input type="text" name="name" size="30" value="Kein Name" /></td>
392                                         <td class="noBorderX">
393                                                 <select size="1" name="user">
394                                                         <!-- BEGIN show.posten.addposten.userlist.listitem -->
395                                                                 <option value="{show.posten.addposten.userlist.id}">{show.posten.addposten.userlist.name}</option>
396                                                         <!-- END show.posten.addposten.userlist.listitem -->                   
397                                                 </select>
398                                         </td>
399                                         <td class="noBorderX">
400                                                 {!form_create_hidden addPosten}
401                                                 <input type="submit" value="hinzuf&uuml;gen" />
402                                         </td>
403                                 </tr>
404                                 </form>
405                                 </table>
406                         {!table_end}
407                 {/endif}
408         {/endif}
409         {if show.battles}
410                 <div class="smallfont">
411                         Zerst&ouml;rte Schiffe:<br />
412                 </div>
413                 <table class="show" cellpadding="3" width="90%">
414                 <tr>
415                 <!-- BEGIN show.destships.listitem -->
416                         <td class="schiffWaren" style="width:100px">
417                                 {show.destships.name}<br />
418                                 <a onmouseover="return overlib('{show.destships.type.name}',TIMEOUT,0,DELAY,400,WIDTH,100);" onmouseout="return nd();" target="_blank" href="./ds?module=schiffinfo&amp;sess={global.sess}&amp;ship={show.destships.type}">
419                                         <img src="{show.destships.type.picture}" alt="" />
420                                 </a><br />
421                                 {show.destships.owner}<br />
422                                 {show.destships.time}
423                         </td>
424                         {if show.destships.newrow}
425                                 </tr>
426                                 <tr>
427                         {/endif}
428                 <!-- END show.destships.listitem -->
429                 <!-- BEGIN show.destships.linefiller.listitem -->
430                         <td class="schiffWaren" style="width:100px">&nbsp;</td>
431                 <!-- END show.destships.linefiller.listitem -->
432                 </tr>
433                 <tr>
434                         <td class="noBorderS" align="left" colspan="2">
435                                 {!link_to zur&uuml;ck, showBattles, destpos:$show.destpos.back}
436                         </td>
437                         <td class="noBorderS" align="right" colspan="3">
438                                 {!link_to vor, showBattles, destpos:$show.destpos.forward}
439                         </td>
440                 </tr>
441                 </table>
442                 <div class="smallfont">
443                         <br />
444                         Verlorene Schiffe:<br />
445                 </div>
446                 <table class="show" cellpadding="3" width="90%">
447                 <tr>
448                 <!-- BEGIN show.lostships.listitem -->
449                         <td class="schiffWaren" style="width:100px">
450                                 {show.lostships.name}<br />
451                                 <a onmouseover="return overlib('{show.lostships.type.name}',TIMEOUT,0,DELAY,400,WIDTH,100);" onmouseout="return nd();" target="_blank" href="./ds?module=schiffinfo&amp;sess={global.sess}&amp;ship={show.lostships.type}">
452                                         <img src="{show.lostships.type.picture}" alt="" />
453                                 </a><br />
454                                 {show.lostships.owner}<br />
455                                 [{show.lostships.destroyer}]<br />
456                                 {show.lostships.time}
457                         </td>
458                         {if show.lostships.newrow}
459                                 </tr>
460                                 <tr>
461                         {/endif}
462                 <!-- END show.lostships.listitem -->
463                 <!-- BEGIN show.lostships.linefiller.listitem -->
464                         <td class="schiffWaren" style="width:100px">&nbsp;</td>
465                 <!-- END show.lostships.linefiller.listitem -->
466                 </tr>
467                 <tr>
468                         <td class="noBorderS" align="left" colspan="2">
469                                 {!link_to zur&uuml;ck, showBattles, lostpos:$show.lostpos.back}
470                         </td>
471                         <td class="noBorderS" align="right" colspan="3">
472                                 {!link_to vor, showBattles, lostpos:$show.lostpos.forward}
473                         </td>
474                 </tr>
475                 </table>
476         {/endif}
477 {else}
478         <div class="smallfont">
479                 <br />
480         </div>
481         {if ally.message}
482                 {!table_begin 400,center}
483                         <span style="color:red">{ally.message}</span>
484                 {!table_end}
485                 <div class="smallfont">
486                         <br />
487                 </div>
488         {/endif}
489         {if ally.statusmessage}
490                 {!table_begin 400,center}
491                         {ally.statusmessage}
492                         {if ally.statusmessage.ask.url1}
493                                 <br />
494                                 <a class="ok" href="./ds?module=ally&amp;sess={global.sess}{ally.statusmessage.ask.url1}">Ja</a> -
495                                 <a class="error" href="./ds?module=ally&amp;sess={global.sess}{ally.statusmessage.ask.url2}">Nein</a>
496                         {/endif}
497                 {!table_end}
498                 <div class="smallfont">
499                         <br />
500                 </div>
501         {/endif}
502        
503         {if show.create}
504                 {!table_begin 450,left}
505                         <form action="./ds" method="post">
506                         <table class="noBorderX" border="1">
507                         <tr>
508                                 <td class="noBorderX" colspan="2" align="center">Allianz gr&uuml;nden</td>
509                         </tr>
510                         <tr>
511                                 <td class="noBorderX">Name:</td>
512                                 <td class="noBorderX"><input name="name" type="text" size="20" maxlength="60" value="" /></td>
513                         </tr>
514                         <tr>
515                                 <td class="noBorderX" colspan="2">Du ben&ouml;tigst zwei Spieler, die die Allianzgr&uuml;ndung unterst&uuml;tzen. Diese werden automatisch Mitglied der Allianz!</td>
516                         </tr>
517                         <tr>
518                                 <td class="noBorderX">1. Unterst&uuml;tzer:</td>
519                                 <td class="noBorderX"><input name="confuser1" type="text" size="20" value="ID" /></td>
520                         </tr>
521                         <tr>
522                                 <td class="noBorderX">2. Unterst&uuml;tzer:</td>
523                                 <td class="noBorderX"><input name="confuser2" type="text" size="20" value="ID" /></td>
524                         </tr>
525                         <tr>
526                                 <td colspan="2" align="center" class="noBorderX">
527                                         {!form_create_hidden found}
528                                         <br />
529                                         <input style="width:200px" type="submit" value="Allianz gr&uuml;nden" />
530                                 </td>
531                         </tr>
532                         </table>
533                         </form>
534                 {!table_end}
535         {/endif}
536         {if show.join}
537                 <div class="smallfont">
538                         Bitte w&auml;hlen sie die Allianz aus, der sie beitreten wollen:<br />
539                 </div>
540                 <table class="noBorder">
541                 <!-- BEGIN show.join.allylist.listitem -->
542                         <tr>
543                                 <td class="noBorderS">
544                                         {!link_to $show.join.allylist.name, join, join:$show.join.allylist.allyid}
545                                         &nbsp;&nbsp;{!link_to [details], details, css_class:back, module:allylist, details:$show.join.allylist.allyid}
546                                 </td>
547                         </tr>
548                 <!-- END show.join.allylist.listitem -->
549                 </table>
550         {/endif}       
551 {/endif}
Note: See TracBrowser for help on using the browser.