add_project.html 1.3 KB

123456789101112131415161718192021222324
  1. {% extends "layout.html" %}
  2. {% block page_title %}{{ _("Add a project") }}{% endblock %}
  3. {% block body %}
  4. <div class="row-fluid">
  5. <div class="span5 offset1 project-choice">
  6. <h3>{{ _("Automatically from a JSON file") }}</h3>
  7. <p>{% trans format_spec=url_for('.format') %}You only have to give us the link to the hostname where you implement the <a href="{{ format_spec }}">ISP Format</a>, and we will crawl it periodicaly to update your informations.{% endtrans %}</p>
  8. <br />
  9. <br />
  10. <p class="text-center">
  11. <a class="btn btn-large btn-primary" href="{{ url_for('.create_project_json') }}">{{ _("Heck yeah") }}</a>
  12. </p>
  13. </div>
  14. <div class="span5 project-choice">
  15. <h3>{{ _("Manually by filling a form") }}</h3>
  16. <p>{% trans %}Don't have the ressources or time to host an <em>ISP Format</em> JSON file ? Don't worry, you can also fill our simple form to give us the informations about your local ISP. Only problem, you'll have to come back here if you want to update it.{% endtrans %}</p>
  17. <br />
  18. <p class="text-center">
  19. <a class="btn btn-large btn-primary" href="{{ url_for('.create_project_form') }}">{{ _("That JSON thing is too cool for me") }}</a>
  20. </p>
  21. </div>
  22. </div>
  23. {% endblock %}