Guest User

Untitled

a guest
Jul 18th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. <h1><span class="hr">Taylor's</span> Professional Services</h1>
  2. <ul id="top">
  3. <li><a class="{% block home %}{% endblock %}" href="/">Home</a></li>
  4. <li><a class="{% block myaccount %}{% endblock %}" href="/profile/">My Account</a></li>
  5. {% if perms.staffing.add_staffrequest %}
  6. <li><a class="{% block createsr %}{% endblock %}"
  7. href="/create/staffrequest/">Staff Request</a></li>
  8. {% endif %}
  9. </ul>
  10.  
  11.  
  12. <div id="content">
  13. {% include "nav.html" %}
  14. {% block home %}current{% endblock %}
  15. <div id="intro">
  16. <p>Hello, {{ user.first_name }}.</p>
  17. <p>Please create a Staff Request here by filling out the form
  18. below.</p>
  19. </div> <!-- end intro -->
  20. <div id="logout">
  21. <a href="/accounts/logout" alt="Sign Off" title="Sign Off">Sign Off</a>
  22. </div>
  23. </div> <!-- end content --
Add Comment
Please, Sign In to add comment