Guest User

Untitled

a guest
Sep 23rd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.51 KB | None | 0 0
  1. {% extends "layout/base.html" %}
  2. {% load static greetings i18n %}
  3.  
  4. {% block title %}{% trans 'Welcome to QueryJane' %}{% endblock %}
  5.  
  6. {% block css %}
  7. <link href="{% static 'dist/css/layout/layout.min.css' %}" rel="stylesheet">
  8. {% endblock %}
  9.  
  10. {% block content %}
  11. <div class="container py-4">
  12. <div class="row">
  13. {% get_general_greeting as general_greeting %}
  14. <div class="col-md-8 offset-md-2 text-center h5 mb-5">
  15. {{ general_greeting }} {{ user.first_name }}, {% trans 'welcome to QueryJane, the network to connect with experts and companies in different sectors of the cannabis industry.' %}
  16. </div>
  17. </div>
  18.  
  19. <div class="row">
  20. <div class="col-md-6 col-12">
  21. <div class="text-center mb-5">
  22. <h3>{% trans 'Register professional profile' %}</h3>
  23. </div>
  24.  
  25. <p>{% trans 'If you are an expert in any sector of the industry and want to receive job offers, submit your professional profile.' %}</p>
  26.  
  27. <p>{% trans 'Select sectors of the industry.' %}</p>
  28.  
  29. {% get_current_language as LANGUAGE_CODE %}
  30.  
  31. <ul class="qjane-industry-categories-list" data-update-professional-profile-category-url="{% url 'account:ax_update_professional_profile_category' %}" data-account-url="{% url 'account:profile_update' %}">
  32. {% for industry_category in industry_categories %}
  33. <li>
  34. <a class="btn {% if industry_category in user.professionalprofile.industry_categories.all %}btn-primary{% else %}btn-ghost-purple{% endif %}" href="javascript:void(0)" data-category-id="{{ industry_category.id }}">
  35. {% if LANGUAGE_CODE == 'es' %}
  36. {{ industry_category.name_es }}
  37. {% else %}
  38. {{ industry_category.name_en }}
  39. {% endif %}
  40. </a>
  41. </li>
  42. {% endfor %}
  43. </ul>
  44.  
  45. <div class="jsQjanePPnextbutton"></div>
  46. </div>
  47.  
  48. <div class="col-md-6 col-12">
  49. <div class="text-center mb-5">
  50. <h3>{% trans 'Register company' %}</h3>
  51. </div>
  52.  
  53. <p>{% trans 'If you have a company in any sector of the cannabis industry, create your company profile.' %}</p>
  54.  
  55. <a href="{% url 'entrepreneur:venture_form' %}" class="btn btn-primary">{% trans 'Register company' %}</a>
  56. </div>
  57. </div>
  58.  
  59. </div>
  60. {% endblock %}
  61.  
  62. {% block js %}
  63. <script src="{% static 'dist/js/account/signup_landing.min.js' %}"></script>
  64. {% endblock %}
Add Comment
Please, Sign In to add comment