map_popup.html 927 B

1234567891011121314151617181920212223
  1. {% macro field(name) -%}
  2. <strong>{{ name|capitalize }}</strong>
  3. {%- endmacro %}
  4. {% if isp.shortname -%}
  5. <a href="{{ url_for('.project', projectid=isp.id) }}"><strong>{{ isp.shortname }}</strong></a><br />
  6. {{ isp.name }}
  7. {% else -%}
  8. <a href="{{ url_for('.project', projectid=isp.id) }}"><strong>{{ isp.name }}</strong></a>
  9. {% endif %}
  10. <ul style="margin: 10px 0 5px 5px; list-style-type: none;">
  11. {%- if isp.json.website %}
  12. <li>{{ field(_("website")) }}: <a href="{{ isp.json.website }}">{{ isp.json.website }}</a></li>
  13. {%- endif %}
  14. {%- if isp.json.email %}
  15. <li>{{ field(_("email")) }}: <a href="mailto:{{ isp.json.email }}"><i class="icon-envelope"></i> {{ isp.json.email }}</a></li>
  16. {%- endif %}
  17. {%- if isp.json.memberCount %}
  18. <li>{{ field(_("members")) }}: {{ isp.json.memberCount }}</li>
  19. {%- endif %}
  20. {%- if isp.json.subscriberCount %}
  21. <li>{{ field(_("subscribers")) }}: {{ isp.json.subscriberCount }}</li>
  22. {%- endif %}
  23. </ul>