Prototype website for VPN service, Bitcoin payments via the Blockchain.info API
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.

17 lines
764 B

10 years ago
  1. {% extends "layout.html" %}
  2. {% block title %}View Support Ticket - packetcrypt{% endblock %}
  3. {% block content %}
  4. <div id="form-container" class="uk-width-1-2 uk-panel uk-panel-box uk-container-center">
  5. <h4 class="uk-panel-title">{{ ticket.subject }}</h4>
  6. <hr class="uk-panel-divider"/>
  7. <span class="ticket-text">{{ ticket.body }}</span>
  8. <br/>
  9. <span class="uk-article-meta">{{ ticket.timestamp }}</span>
  10. <br/><br/>
  11. <a href="{{url_for('dashboard')}}" class="uk-button uk-button-primary" type="submit">Close</a>
  12. <a href="{{url_for('editticket', tid=ticket.id)}}" class="uk-button uk-button-success">Edit</a>
  13. <a href="{{url_for('deleteticket', tid=ticket.id)}}" class="uk-button uk-button-danger">Delete</a>
  14. </div>
  15. {% endblock %}