Automatically exported from code.google.com/p/planningalerts
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

23 行
1022 B

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <planning>
  3. <authority_name>
  4. {$authority_name|escape:html}
  5. </authority_name>
  6. <authority_short_name>
  7. {$authority_short_name|escape:html}
  8. </authority_short_name>
  9. <applications>
  10. {foreach name="applications" from="$applications" item="application"}
  11. <application>
  12. <council_reference>{$application->council_reference|escape:html}</council_reference>
  13. <address>{$application->address|escape:html}</address>
  14. <postcode>{$application->postcode|escape:html}</postcode>
  15. <description>{$application->description|escape:html}</description>
  16. <info_url>{$application->info_url|escape:html}</info_url>
  17. <comment_url>{$application->comment_url|escape:html}</comment_url>
  18. <date_received>{$application->date_received|escape:html}</date_received>
  19. </application>
  20. {/foreach}
  21. </applications>
  22. </planning>