diff options
author | Paul Duncan <pabs@pablotron.org> | 2016-04-03 12:19:28 -0400 |
---|---|---|
committer | Paul Duncan <pabs@pablotron.org> | 2016-04-03 12:19:28 -0400 |
commit | cefb037b3c329070069ec0df8c325a0f2ac17a33 (patch) | |
tree | 11da545e58990161f4959cb72789e9bf434e36f8 /src/guff/views | |
parent | 689ee9c7ea48c2e3de8790dcaae4500207567508 (diff) | |
download | old-guff-cefb037b3c329070069ec0df8c325a0f2ac17a33.tar.bz2 old-guff-cefb037b3c329070069ec0df8c325a0f2ac17a33.zip |
split title and slug
Diffstat (limited to 'src/guff/views')
-rw-r--r-- | src/guff/views/ecrs/test/auth.ecr | 62 | ||||
-rw-r--r-- | src/guff/views/html/test/auth.cr | 2 |
2 files changed, 35 insertions, 29 deletions
diff --git a/src/guff/views/ecrs/test/auth.ecr b/src/guff/views/ecrs/test/auth.ecr index 6999737..10b9518 100644 --- a/src/guff/views/ecrs/test/auth.ecr +++ b/src/guff/views/ecrs/test/auth.ecr @@ -599,33 +599,39 @@ class='tab-pane' role='tabpanel' > - <div class='form-group'> - <label for='post-new-blog-name'> - Title - </label> - - <input - type='text' - id='post-new-blog-name' - class='form-control' - title='Enter title for blog post.' - placeholder='Blog Post Title' - /> - </div><!-- form-group --> - - <div class='form-group'> - <label for='post-new-blog-slug'> - Slug - </label> - - <input - type='text' - id='post-new-blog-slug' - class='form-control' - title='Enter slug for blog post.' - placeholder='blog-post-slug' - /> - </div><!-- form-group --> + <div class='row'> + <div class='col-md-6'> + <div class='form-group'> + <label for='post-new-blog-name'> + Title + </label> + + <input + type='text' + id='post-new-blog-name' + class='form-control' + title='Enter title for blog post.' + placeholder='Blog Post Title' + /> + </div><!-- form-group --> + </div><!-- col-md-6 --> + + <div class='col-md-6'> + <div class='form-group'> + <label for='post-new-blog-slug'> + Slug + </label> + + <input + type='text' + id='post-new-blog-slug' + class='form-control' + title='Enter slug for blog post.' + placeholder='blog-post-slug' + /> + </div><!-- form-group --> + </div><!-- col-md-6 --> + </div><!-- row --> <div class='form-group'> <label for='post-new-blog-body'> @@ -635,7 +641,7 @@ <textarea id='post-new-blog-body' class='form-control' - rows='10' + rows='15' ></textarea> </div><!-- form-group --> </div><!-- #post-new-tab-pane-blog --> diff --git a/src/guff/views/html/test/auth.cr b/src/guff/views/html/test/auth.cr index a9b9d85..60bafb3 100644 --- a/src/guff/views/html/test/auth.cr +++ b/src/guff/views/html/test/auth.cr @@ -4,7 +4,7 @@ require "../page" class Guff::TestAuthHTMLView TITLE = "Guff Auth Test" FEATURES = %w{bootstrap font-awesome guff/util} - # /guff-stuff/tinymce-4.3.7/tinymce.min.js + SCRIPTS = %w{ /guff-stuff/ckeditor-4.5.8-custom/ckeditor.js /guff-stuff/js/search-field.js |