You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
1010 B

  1. {% extends "base.html" %}
  2. {% set active_page = "quest_list" %}
  3. {% block title %}ACKS Quest List{% endblock %}
  4. {% block content %}
  5. <div class="uk-flex uk-flex-center uk-margin-bottom uk-margin-top">
  6. <h1 class="uk-text-center"><strong>Adventurer Conqueror King</strong>Quest Board (Internal)</h1>
  7. </div>
  8. {% if quest_map %}
  9. <div class="uk-flex uk-flex-bottom uk-flex-center uk-margin-large-bottom">
  10. <ul class="uk-list">
  11. {% for level, quests in quest_map.items() | sort(attribute=0) %}
  12. <li>
  13. <strong>Level {{ level[0] }} - {{ level[1] }}</strong>
  14. <ul class="uk-list">
  15. {% for quest in quests %}
  16. <li><a href="{{ url_for('quest_manager.quest_detail', level=level, quest_name=quest) }}">{{ quest }}</a></li>
  17. {% endfor %}
  18. </ul>
  19. </li>
  20. {% endfor %}
  21. </ul>
  22. </div>
  23. {% endif %}
  24. {% endblock %}
  25. {% block head %}
  26. <style>
  27. h1 strong {
  28. display: block;
  29. font-size: 50%;
  30. opacity: 0.65;
  31. }
  32. </style>
  33. <script>
  34. </script>
  35. {% endblock %}