PHP Classes

File: app/Resources/HerzultForumBundle/views/Topic/new.html.twig

Recommend this page to a friend!
  Classes of Manolo Salsas   Online PHP Image Transform   app/Resources/HerzultForumBundle/views/Topic/new.html.twig   Download  
File: app/Resources/HerzultForumBundle/views/Topic/new.html.twig
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Online PHP Image Transform
Application to do interactive image manipulation
Author: By
Last change:
Date: 4 years ago
Size: 698 bytes
 

Contents

Class file image Download
{% extends 'HerzultForumBundle::layout.html.twig' %} {% block title %}New Topic{% endblock %} {% block content %} <div class="forum topic_new"> <ul class="crumbs"> <li><a href="{{ path('herzult_forum_index') }}">Forum</a></li> <li>New Topic</li> </ul> <div class="main"> <h2>New Topic</h2> <form action="{{ path('herzult_forum_category_topic_create', {'slug': category.slug}) }}" method="post"> {{ form_widget(form) }} <button type="submit" name="create">Create topic</button> </form> </div> <div class="side"> <p><a href="{{ path('herzult_forum_index') }}">Cancel</a></p> </div> </div> {% endblock %}